From ec7e8aaeda56d3dc183089ed026e6074e44eae7a Mon Sep 17 00:00:00 2001 From: Adrian <1502731+adrian-salajan@users.noreply.github.com> Date: Tue, 13 Oct 2020 10:35:37 +0300 Subject: [PATCH] Fix typo (#29741) --- akka-docs/src/main/paradox/typed/interaction-patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/interaction-patterns.md b/akka-docs/src/main/paradox/typed/interaction-patterns.md index 74376cb1ef..625a009f51 100644 --- a/akka-docs/src/main/paradox/typed/interaction-patterns.md +++ b/akka-docs/src/main/paradox/typed/interaction-patterns.md @@ -256,7 +256,7 @@ Scala Java : @@snip [InteractionPatternsTest.java](/akka-actor-typed-tests/src/test/java/jdocs/akka/typed/InteractionPatternsAskWithStatusTest.java) { #actor-ask-with-status } -A validation error is turned into a `Failure` for the message adapter. In this case we are explicitly handling the valdation error separately from +A validation error is turned into a `Failure` for the message adapter. In this case we are explicitly handling the validation error separately from other ask failures. **Example ask from the outside:**