From 2d8cb3764eaa9efca89db93362b84ca0df022ebc Mon Sep 17 00:00:00 2001 From: Stanislav Savulchik Date: Sat, 23 Aug 2014 12:45:02 +0700 Subject: [PATCH] =act Fix tell method scaladoc --- akka-actor/src/main/scala/akka/actor/ActorRef.scala | 2 +- akka-actor/src/main/scala/akka/actor/ActorSelection.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-actor/src/main/scala/akka/actor/ActorRef.scala b/akka-actor/src/main/scala/akka/actor/ActorRef.scala index c56f744e27..447d673001 100644 --- a/akka-actor/src/main/scala/akka/actor/ActorRef.scala +++ b/akka-actor/src/main/scala/akka/actor/ActorRef.scala @@ -115,7 +115,7 @@ abstract class ActorRef extends java.lang.Comparable[ActorRef] with Serializable } /** - * Sends the specified message to the sender, i.e. fire-and-forget + * Sends the specified message to this ActorRef, i.e. fire-and-forget * semantics, including the sender reference if possible. * * Pass [[akka.actor.ActorRef$.noSender]] or `null` as sender if there is nobody to reply to diff --git a/akka-actor/src/main/scala/akka/actor/ActorSelection.scala b/akka-actor/src/main/scala/akka/actor/ActorSelection.scala index c200c100b0..ceaabb5072 100644 --- a/akka-actor/src/main/scala/akka/actor/ActorSelection.scala +++ b/akka-actor/src/main/scala/akka/actor/ActorSelection.scala @@ -31,7 +31,7 @@ abstract class ActorSelection extends Serializable { protected val path: immutable.IndexedSeq[SelectionPathElement] /** - * Sends the specified message to the sender, i.e. fire-and-forget + * Sends the specified message to this ActorSelection, i.e. fire-and-forget * semantics, including the sender reference if possible. * * Pass [[ActorRef#noSender]] or `null` as sender if there is nobody to reply to