From 05b9234b179e661949cc9bae93232c74e2b8d9a8 Mon Sep 17 00:00:00 2001 From: Sam Neirinck Date: Sat, 16 Dec 2017 01:05:28 +0100 Subject: [PATCH] Fix unicode error (#3209) --- docs/articles/streams/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/streams/quickstart.md b/docs/articles/streams/quickstart.md index 22917244f5e..cb0a0a89c3f 100644 --- a/docs/articles/streams/quickstart.md +++ b/docs/articles/streams/quickstart.md @@ -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 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: +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 =