Fix select typo

This commit is contained in:
Yu Wei Wu 2019-08-22 12:39:45 +08:00 committed by Taylor Cramer
parent 2bdc0a1d77
commit 2f17ce0ce3
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ the loop. Because the future returned by `future::ready` implements
Note that streams have a corresponding `FusedStream` trait. Streams
which implement this trait or have been wrapped using `.fuse()`
`will yield `FusedFuture` futures from their
will yield `FusedFuture` futures from their
`.next()` / `.try_next()` combinators.
```rust