From a281e627a9435a4b350d7609e36121c61e5e4af6 Mon Sep 17 00:00:00 2001 From: Amir Moulavi Date: Mon, 27 Aug 2012 09:28:08 +0200 Subject: [PATCH] A typo is corrected. It should be 'affect' instead of 'effect' --- akka-docs/scala/actors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/scala/actors.rst b/akka-docs/scala/actors.rst index 548190c6fd..a3ed21b32f 100644 --- a/akka-docs/scala/actors.rst +++ b/akka-docs/scala/actors.rst @@ -380,7 +380,7 @@ futures, because this is likely to be a common combination. Please note that all of the above is completely non-blocking and asynchronous: ``ask`` produces a :class:`Future`, three of which are composed into a new future using the for-comprehension and then ``pipeTo`` installs an ``onComplete``-handler on the -future to effect the submission of the aggregated :class:`Result` to another +future to affect the submission of the aggregated :class:`Result` to another actor. Using ``ask`` will send a message to the receiving Actor as with ``tell``, and