From 127564cff6d15687344bb38fae5683884a5d21f8 Mon Sep 17 00:00:00 2001 From: Ikrom Date: Fri, 20 Oct 2017 22:00:16 +0500 Subject: [PATCH] =doc fix typo in dispatchers.md (#23825) Typo and duplicated word are fixed --- akka-docs/src/main/paradox/scala/dispatchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/scala/dispatchers.md b/akka-docs/src/main/paradox/scala/dispatchers.md index f60c659101..bc1aa08cbd 100644 --- a/akka-docs/src/main/paradox/scala/dispatchers.md +++ b/akka-docs/src/main/paradox/scala/dispatchers.md @@ -358,7 +358,7 @@ For a similar discussion specific about Akka HTTP refer to, @scala[@extref[Handl The non-exhaustive list of adequate solutions to the “blocking problem” includes the following suggestions: - * Do the blocking call within an actor (or a set of actors managed by a router + * Do the blocking call within an actor (or a set of actors) managed by a @ref:[router](routing.md), making sure to configure a thread pool which is either dedicated for this purpose or sufficiently sized.