Skip to content

Commit

Permalink
Fix readme for BufRead
Browse files Browse the repository at this point in the history
The `BufRead` readme points to `BufReadExt` being in `async_std::prelude` while it currently lives in `async_std::io::prelude`
  • Loading branch information
Licenser authored May 20, 2020
1 parent 955befd commit 6980640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/buf_read/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extension_trait! {
```
# #[allow(unused_imports)]
use async_std::prelude::*;
use async_std::io::prelude::*;
```
[`std::io::BufRead`]: https://doc.rust-lang.org/std/io/trait.BufRead.html
Expand Down

0 comments on commit 6980640

Please sign in to comment.