From a4ba179bdddcabae1947eb307ec017d576ae4b3a Mon Sep 17 00:00:00 2001 From: Michele Lacchia Date: Mon, 26 Oct 2020 11:13:47 +0100 Subject: [PATCH] fix(docs): typo in BufWriter documentation --- library/std/src/io/buffered/bufwriter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`]`. +/// in memory, like a [`Vec`]``. /// /// It is critical to call [`flush`] before `BufWriter` is dropped. Though /// dropping will attempt to flush the contents of the buffer, any errors