Skip to content

Commit

Permalink
filter -> fiber
Browse files Browse the repository at this point in the history
  • Loading branch information
lrodero committed Nov 26, 2023
1 parent 6370c3f commit 61f28c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ previous example this program shall run forever until the user presses CTRL-C.

### Producer consumer with bounded queue
Having a bounded queue implies that producers, when the queue is full, will wait
(be 'filter blocked') until there is some empty bucket available to be
(be 'fiber blocked') until there is some empty bucket available to be
filled. So an implementation needs to keep track of these waiting producers. To
do so we will add a new queue `offerers` that will be added to the `State`
alongside `takers`. For each waiting producer the `offerers` queue will keep a
Expand Down

0 comments on commit 61f28c3

Please sign in to comment.