From 7c9eed6d8b7d419a2f6480e4b7e82079c57c0bf0 Mon Sep 17 00:00:00 2001 From: Edward Samson Date: Sat, 10 Oct 2020 19:04:57 +0800 Subject: [PATCH] Grammar fix (#29723) --- akka-docs/src/main/paradox/typed/cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/cluster.md b/akka-docs/src/main/paradox/typed/cluster.md index 531862219b..61b1423cac 100644 --- a/akka-docs/src/main/paradox/typed/cluster.md +++ b/akka-docs/src/main/paradox/typed/cluster.md @@ -316,7 +316,7 @@ The node roles are defined in the configuration property named `akka.cluster.rol and typically defined in the start script as a system property or environment variable. The roles are part of the membership information in `MemberEvent` that you can subscribe to. The roles -of the own node are available from the `selfMember` and that can be used for conditionally start certain +of the own node are available from the `selfMember` and that can be used for conditionally starting certain actors: Scala