=doc Add missing by in Routing docs

Add a missing `by` to the Routing docs, Specially Handled Messages section.
This commit is contained in:
Markus Hauck 2015-10-14 14:42:35 +02:00
parent ace389b1f4
commit eed72626dd
2 changed files with 2 additions and 2 deletions

View file

@ -581,7 +581,7 @@ Management Messages
* Sending ``akka.routing.AdjustPoolSize`` to a pool router actor will add or remove that number of routees to
its collection of routees.
These management messages may be handled after other messages, so if you send ``AddRoutee`` immediately followed
These management messages may be handled after other messages, so if you send ``AddRoutee`` immediately followed by
an ordinary message you are not guaranteed that the routees have been changed when the ordinary message
is routed. If you need to know when the change has been applied you can send ``AddRoutee`` followed by ``GetRoutees``
and when you receive the ``Routees`` reply you know that the preceding change has been applied.