From 5e68cd0297aba29163fbdd00787e36aa13af9570 Mon Sep 17 00:00:00 2001 From: Kun Song Date: Tue, 23 Jul 2019 15:35:31 +0800 Subject: [PATCH] Fix a typo in Stash document (#27399) --- akka-docs/src/main/paradox/typed/stash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/stash.md b/akka-docs/src/main/paradox/typed/stash.md index fe67306d96..c62d9aaf10 100644 --- a/akka-docs/src/main/paradox/typed/stash.md +++ b/akka-docs/src/main/paradox/typed/stash.md @@ -15,7 +15,7 @@ To use Akka Actor Typed, you must add the following dependency in your project: Stashing enables an actor to temporarily buffer all or some messages that cannot or should not be handled using the actor's current behavior. -A typical example when this is useful is if the actor has too load some initial state or initialize +A typical example when this is useful is if the actor has to load some initial state or initialize some resources before it can accept the first real message. Another example is when the actor is waiting for something to complete before processing next message.