Skip to content

Commit

Permalink
Update 01_chapter.md
Browse files Browse the repository at this point in the history
  • Loading branch information
codegod100 authored Sep 22, 2024
1 parent ed022fc commit a475e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/04_pinning/01_chapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a475e5a

Please sign in to comment.