From 10bc33f0354e348727669da3c2905dc593c046c6 Mon Sep 17 00:00:00 2001 From: viktorklang Date: Mon, 29 Mar 2010 12:21:30 -0700 Subject: [PATCH] Added missing + sign --- akka-core/src/main/scala/actor/Actor.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-core/src/main/scala/actor/Actor.scala b/akka-core/src/main/scala/actor/Actor.scala index c0c7d0453a..db248eb025 100644 --- a/akka-core/src/main/scala/actor/Actor.scala +++ b/akka-core/src/main/scala/actor/Actor.scala @@ -598,7 +598,7 @@ trait Actor extends TransactionManagement with Logging { "\n\t\t2. Send a message from an instance that is *not* an actor" + "\n\t\t3. Send a message to an Active Object annotated with the '@oneway' annotation? " + "\n\tIf so, switch to '!!' (or remove '@oneway') which passes on an implicit future" + - "\n\tthat will be bound by the argument passed to 'reply'." + "\n\tthat will be bound by the argument passed to 'reply'." + "\n\tAlternatively, you can use setReplyToAddress to make sure the actor can be contacted over the network.") case Some(future) => future.completeWithResult(message)