Fix typos in "handling blocking operations" doc (#21099)

executer -> executor.
This commit is contained in:
skchrko 2016-08-03 14:06:35 +03:00 committed by Johan Andrén
parent c8026dc714
commit 889e0ef42e

View file

@ -74,7 +74,7 @@ be configured as follows::
my-blocking-dispatcher {
type = Dispatcher
executor = "thread-pool-executor"
thread-pool-executer {
thread-pool-executor {
// or in Akka 2.4.2+
fixed-pool-size = 16
}
@ -83,7 +83,7 @@ be configured as follows::
There are many dispatcher options available which can be found in :ref:`dispatchers-scala`.
Here ``thread-pool-executer`` is used, which has a hard limit of threads, it can
Here ``thread-pool-executor`` is used, which has a hard limit of threads, it can
keep available for blocking operations. The size settings depend on the app
functionality and the number of cores the server has.