diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-10-27 08:45:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-27 08:45:20 +0900 |
| commit | f6f8764b25186174e812296f8d9cd4cff734e917 (patch) | |
| tree | 29f9fbc65f48f367a42138d448c10ab44c458cf9 | |
| parent | 98e2a9564f338e0f30cbcf6f99762b2a4b3dae14 (diff) | |
| parent | a4ba179bdddcabae1947eb307ec017d576ae4b3a (diff) | |
Rollup merge of #78394 - rubik:master, r=m-ou-se
fix(docs): typo in BufWriter documentation This PR fixes a small typo in the BufWriter documentation. The current documentation looks like this:  The `<u8>` at the end is mangled by Markdown. This PR makes the `BufWriter` documentation like the `BufReader` one: https://github.com/rust-lang/rust/blob/master/library/std/src/io/buffered/bufreader.rs#L16 I'm tagging Steve as per the Rustc dev guide. r? @steveklabnik
| -rw-r--r-- | library/std/src/io/buffered/bufwriter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/buffered/bufwriter.rs b/library/std/src/io/buffered/bufwriter.rs index 8ce795a05ed..3ec272fea66 100644 --- a/library/std/src/io/buffered/bufwriter.rs +++ b/library/std/src/io/buffered/bufwriter.rs @@ -15,7 +15,7 @@ use crate::io::{ /// *repeated* write calls to the same file or network socket. It does not /// help when writing very large amounts at once, or writing just one or a few /// times. It also provides no advantage when writing to a destination that is -/// in memory, like a [`Vec`]<u8>`. +/// in memory, like a [`Vec`]`<u8>`. /// /// It is critical to call [`flush`] before `BufWriter<W>` is dropped. Though /// dropping will attempt to flush the contents of the buffer, any errors |
