=doc fix duplicate "." (#24947)

This commit is contained in:
Song Kun 2018-04-23 13:53:00 +08:00 committed by Konrad `ktoso` Malawski
parent 5061ab7f85
commit ffd4de6913

View file

@ -651,7 +651,7 @@ Messages are sent to an Actor through one of the following methods.
* @scala[`!`] @java[`tell` ] means “fire-and-forget”, e.g. send a message asynchronously and return
immediately. @scala[Also known as `tell`.]
* @scala[`?`] @java[`ask`] sends a message asynchronously and returns a `Future`
representing a possible reply. @scala[Also known as `ask`].
representing a possible reply. @scala[Also known as `ask`.]
Message ordering is guaranteed on a per-sender basis.