From e55a9fcf890e920a4ca78fade8ac5f398f12ba73 Mon Sep 17 00:00:00 2001 From: Jorge Cruz Date: Mon, 13 Jan 2020 01:56:42 -0800 Subject: [PATCH] Add missing word Map to tutorial_4.md (#28472) --- akka-docs/src/main/paradox/typed/guide/tutorial_4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/guide/tutorial_4.md b/akka-docs/src/main/paradox/typed/guide/tutorial_4.md index 27e26821a2..cbd048a862 100644 --- a/akka-docs/src/main/paradox/typed/guide/tutorial_4.md +++ b/akka-docs/src/main/paradox/typed/guide/tutorial_4.md @@ -85,7 +85,7 @@ A group actor has some work to do when it comes to registrations, including: ### Handling the registration request -A device group actor must either reply to the request with the `ActorRef` of an existing child, or it should create one. To look up child actors by their device IDs we will use a . +A device group actor must either reply to the request with the `ActorRef` of an existing child, or it should create one. To look up child actors by their device IDs we will use a `Map`. Add the following to your source file: