Add a missing "to" (#11)

This commit is contained in:
Derek Gonyeo 2019-03-28 08:58:25 -07:00 committed by Yoshua Wuyts
parent 215231cb82
commit 3b5c2297d4
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ But what does it mean, and why do we need it?
## Why Pinning
Pinning makes it possible to guarantee that an object won't ever be moved.
To understand why this is necessary, we need remember how `async`/`await!`
To understand why this is necessary, we need to remember how `async`/`await!`
works. Consider the following code:
```rust