From ae22f114b21d2e1eec6c1546281287b8a3110908 Mon Sep 17 00:00:00 2001 From: Jesse Date: Mon, 30 Nov 2020 02:30:21 -0600 Subject: [PATCH] Update persistence.md (#29844) Fix typo, although I'm in support of adding 'commandler' to the dictionary. --- akka-docs/src/main/paradox/typed/persistence.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/persistence.md b/akka-docs/src/main/paradox/typed/persistence.md index 3450cd5ea0..3dd66181cf 100644 --- a/akka-docs/src/main/paradox/typed/persistence.md +++ b/akka-docs/src/main/paradox/typed/persistence.md @@ -345,7 +345,7 @@ Scala Java : @@snip [BlogPostEntity.java](/akka-persistence-typed/src/test/java/jdocs/akka/persistence/typed/BlogPostEntity.java) { #commands } -@java[The commandler handler to process each command is decided by the state class (or state predicate) that is +@java[The command handler to process each command is decided by the state class (or state predicate) that is given to the `forStateType` of the `CommandHandlerBuilder` and the match cases in the builders.] @scala[The command handler to process each command is decided by first looking at the state and then the command. It typically becomes two levels of pattern matching, first on the state and then on the command.]