From a17fbeed86ab3243e2b50c757618dfad98b1b34b Mon Sep 17 00:00:00 2001 From: funkill2 Date: Thu, 26 Sep 2024 04:00:07 +0300 Subject: [PATCH] update original --- async-book/src/04_pinning/01_chapter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-book/src/04_pinning/01_chapter.md b/async-book/src/04_pinning/01_chapter.md index b169f99..defcb4e 100644 --- a/async-book/src/04_pinning/01_chapter.md +++ b/async-book/src/04_pinning/01_chapter.md @@ -323,7 +323,7 @@ out of `Pin`. For example, `u8` is `Unpin`, so `Pin<&mut u8>` behaves just like a normal `&mut u8`. However, types that can't be moved after they're pinned have a marker called -`!Unpin`. Futures created by async/await is an example of this. +`!Unpin`. Futures created by async/await are an example of this. ### Pinning to the Stack