Update 06_async_aware_primitives.md (#122)
authorcode-cp <106009933+code-cp@users.noreply.github.com>
Sun, 28 Jul 2024 10:46:20 +0000 (18:46 +0800)
committerGitHub <noreply@github.com>
Sun, 28 Jul 2024 10:46:20 +0000 (12:46 +0200)
Fix a typo

book/src/08_futures/06_async_aware_primitives.md

index af52682..9360647 100644 (file)
@@ -52,7 +52,7 @@ Yields to runtime
              Tries to acquire lock
 ```
 
-We have a deadlock. Task B we'll never manage to acquire the lock, because the lock
+We have a deadlock. Task B will never manage to acquire the lock, because the lock
 is currently held by task A, which has yielded to the runtime before releasing the
 lock and won't be scheduled again because the runtime cannot preempt task B.