From 889e0ef42e1d8564fa0418f5401f60f5b99fd015 Mon Sep 17 00:00:00 2001 From: skchrko Date: Wed, 3 Aug 2016 14:06:35 +0300 Subject: [PATCH] Fix typos in "handling blocking operations" doc (#21099) executer -> executor. --- .../http/handling-blocking-operations-in-akka-http-routes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/rst/scala/http/handling-blocking-operations-in-akka-http-routes.rst b/akka-docs/rst/scala/http/handling-blocking-operations-in-akka-http-routes.rst index 3dd622e2da..e264edd487 100644 --- a/akka-docs/rst/scala/http/handling-blocking-operations-in-akka-http-routes.rst +++ b/akka-docs/rst/scala/http/handling-blocking-operations-in-akka-http-routes.rst @@ -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.