From 9a2d7a08387c63a43030d8799a49bb7f7262ebe9 Mon Sep 17 00:00:00 2001 From: Radhakrishnan K Date: Wed, 18 Apr 2018 19:56:05 +0530 Subject: [PATCH] Update actors.md (#24920) Typo --- akka-docs/src/main/paradox/typed/actors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/actors.md b/akka-docs/src/main/paradox/typed/actors.md index 21680bec15..8a032c55ac 100644 --- a/akka-docs/src/main/paradox/typed/actors.md +++ b/akka-docs/src/main/paradox/typed/actors.md @@ -74,7 +74,7 @@ protocol is bundled together with the behavior that implements it in a nicely wrapped scope—the `HelloWorld` @scala[object]@java[class]. As Carl Hewitt said, one Actor is no Actor—it would be quite lonely with -nobody to talk to. We need another Actor that that interacts with the `greeter`. +nobody to talk to. We need another Actor that interacts with the `greeter`. Let's make a `bot` that receives the reply from the `greeter` and sends a number of additional greeting messages and collect the replies until a given max number of messages have been reached.