=act Fix tell method scaladoc

This commit is contained in:
Stanislav Savulchik 2014-08-23 12:45:02 +07:00
parent 17e27eed62
commit 2d8cb3764e
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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