Skip to content

Commit 5e2ae69

Browse files
committed
Improve documentation wording
1 parent 30c2c47 commit 5e2ae69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/concurrent/actor/behaviour/buffer.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ module Behaviour
44

55
# Any message reaching this behaviour is buffered. Only one message is is scheduled
66
# at any given time. Others are kept in buffer until another one can be scheduled.
7-
# This effective means that messages handled by behaviours before buffer have higher priority
8-
# and they can be processed before messages arriving into buffer. This allows to
9-
# process internal actor messages like (`:link`, `:supervise`) processed first.
7+
# This effectively means that messages handled by behaviours before buffer have higher priority
8+
# and they can be processed before messages arriving into buffer. This allows for
9+
# the processing of internal actor messages like (`:link`, `:supervise`) first.
1010
class Buffer < Abstract
1111
def initialize(core, subsequent)
1212
super core, subsequent

0 commit comments

Comments
 (0)