summaryrefslogtreecommitdiff
path: root/docs/pages/4 - Cask Actors.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pages/4 - Cask Actors.md')
-rw-r--r--docs/pages/4 - Cask Actors.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/4 - Cask Actors.md b/docs/pages/4 - Cask Actors.md
index 3e04834..e6be320 100644
--- a/docs/pages/4 - Cask Actors.md
+++ b/docs/pages/4 - Cask Actors.md
@@ -467,8 +467,8 @@ Note that while multiple threads can send messages to `Logger` at once, and the
`Flush()` message can also be sent at an arbitrary time in the future thanks to
the `ac.scheduleMsg` call, the actor will only ever process one message at a
time. This means you can be sure that it will transition through the two states
-`Idle` and `Buffering` in a straightforward manner, without worry about multiple
-threads executing at once and messing up the simple state machine.
+`Idle` and `Buffering` in a straightforward manner, without worrying about
+multiple threads executing at once and messing up the simple state machine.
## Debugging Actors