From fc3370fe2d5f05556432bf740e2cba53a3e44b7c Mon Sep 17 00:00:00 2001 From: Luis Rodero-Merino Date: Wed, 26 Jul 2023 18:19:33 +0200 Subject: [PATCH] Fix as in PR #3760 --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index f2e764451d..01409809ef 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -770,7 +770,7 @@ Both producer and consumer will access the same shared state instance, which will be carried and safely modified by an instance of `Ref`. Consumer shall work as follows: 1. If `queue` is not empty, it will extract and return its head. The new state - will keep the tail of the queue, not change on `takers` will be needed. + will keep the tail of the queue, no change on `takers` will be needed. 2. If `queue` is empty it will use a new `Deferred` instance as a new `taker`, add it to the `takers` queue, and 'block' the caller by invoking `taker.get`