From d23834d00474cbb2bceb1d731f77da3188027d0d Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Tue, 13 Oct 2015 12:04:21 +0200 Subject: [PATCH] =doc Fix sentence in `Actors/Send messages/Ask` The sentence > Gives you a way to avoid blocking. does not make sense alone, I added it to the previous one. --- akka-docs/rst/scala/actors.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/rst/scala/actors.rst b/akka-docs/rst/scala/actors.rst index 725f7610903..12a5ba98152 100644 --- a/akka-docs/rst/scala/actors.rst +++ b/akka-docs/rst/scala/actors.rst @@ -580,8 +580,8 @@ See :ref:`futures-scala` for more information on how to await or query a future. The ``onComplete``, ``onSuccess``, or ``onFailure`` methods of the ``Future`` can be -used to register a callback to get a notification when the Future completes. -Gives you a way to avoid blocking. +used to register a callback to get a notification when the Future completes, giving +you a way to avoid blocking. .. warning::