Skip to content

Commit

Permalink
Fix unicode error (#3209)
Browse files Browse the repository at this point in the history
  • Loading branch information
samneirinck authored and Aaronontheweb committed Dec 16, 2017
1 parent 88d85c7 commit 05b9234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/streams/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using (var materializer = system.Materializer())
```
There are other ways to create a materializer, e.g. from an `ActorContext` when using streams from within Actors. The `Materializer` is a factory for stream execution engines, it is the thing that makes streams run --you don't need to worry about any of the details just now apart from that you need one for calling any of the run methods on a `Source`.

The nice thing about Akka Streams is that the `Source` is just a description of what you want to run, and like an architects blueprint it can be reused, incorporated into a larger design. We may choose to transform the source of integers and write it to a file instead:
The nice thing about Akka Streams is that the `Source` is just a description of what you want to run, and like an architect's blueprint it can be reused, incorporated into a larger design. We may choose to transform the source of integers and write it to a file instead:
```csharp
var factorials = source.Scan(new BigInteger(1), (acc, next) => acc * next);
var result =
Expand Down

0 comments on commit 05b9234

Please sign in to comment.