From 49247f7bb10e49771307740cdc798adca3b09ddf Mon Sep 17 00:00:00 2001 From: Jontos Date: Mon, 10 Aug 2026 18:25:20 +1000 Subject: [PATCH] Fix swapped doc comment lines on the `io::Read` trait --- library/alloc/src/io/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/alloc/src/io/read.rs b/library/alloc/src/io/read.rs index 58d3e7005f288..e23f0bca9bb8d 100644 --- a/library/alloc/src/io/read.rs +++ b/library/alloc/src/io/read.rs @@ -22,8 +22,8 @@ use crate::vec::Vec; /// trait. /// /// Please note that each call to [`read()`] may involve a system call, and -/// `BufReader`, will be more efficient. /// therefore, using something that implements [`BufRead`], such as +/// `BufReader`, will be more efficient. /// /// [`BufRead`]: crate::io::BufRead ///