From ffd4de6913f9eb3e0395042854b60b197d2d39ea Mon Sep 17 00:00:00 2001 From: Song Kun Date: Mon, 23 Apr 2018 13:53:00 +0800 Subject: [PATCH] =doc fix duplicate "." (#24947) --- akka-docs/src/main/paradox/actors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/actors.md b/akka-docs/src/main/paradox/actors.md index ec7d085deb..40ab428e22 100644 --- a/akka-docs/src/main/paradox/actors.md +++ b/akka-docs/src/main/paradox/actors.md @@ -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.