=doc Correct typos in "Streaming File IO" section

This commit is contained in:
Philip L. McMahon 2015-05-24 09:55:19 -07:00
parent 7f04234d3e
commit 9c48bd8099
2 changed files with 4 additions and 4 deletions

View file

@ -117,8 +117,8 @@ Streaming data from a file is as easy as defining a `SynchronousFileSource` give
Please note that these processing stages are backed by Actors and by default are configured to run on a pre-configured
threadpool-backed dispatcher dedicated for File IO. This is very important as it isolates the blocking file IO operations from the rest
of the ActorSystem allowing each dispatcher to be utilised in the most efficient way. If you want to configure a custom
dispatcher for file IO operations globally, you can do so by changing the ``akka.strea.file-io-dispatcher``,
or for a specific stage by spefifying a custom Dispatcher in code, like this:
dispatcher for file IO operations globally, you can do so by changing the ``akka.stream.file-io-dispatcher``,
or for a specific stage by specifying a custom Dispatcher in code, like this:
.. includecode:: code/docs/stream/io/StreamFileDocSpec.scala#custom-dispatcher-code