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: