summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2019-11-05 08:49:58 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2019-11-05 08:49:58 +0800
commit35d3af1cd09d36c31744d214f0cadc3dd2ac51b2 (patch)
tree9c5a62ed0896d88f100b3c64e92bbae6335fa80e /docs
parent3c7b7e70beb9013755bcaa0e724190bdfc8c99ea (diff)
downloadcask-35d3af1cd09d36c31744d214f0cadc3dd2ac51b2.tar.gz
cask-35d3af1cd09d36c31744d214f0cadc3dd2ac51b2.tar.bz2
cask-35d3af1cd09d36c31744d214f0cadc3dd2ac51b2.zip
0.3.40.3.4
Diffstat (limited to 'docs')
-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