We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
BufReadExt
1 parent 750f2c6 commit 685f557Copy full SHA for 685f557
src/libstd/io/mod.rs
@@ -844,7 +844,7 @@ impl fmt::Display for CharsError {
844
/// An iterator over the contents of an instance of `BufRead` split on a
845
/// particular byte.
846
///
847
-/// See `BufReadExt::split` for more information.
+/// See `BufRead::split` for more information.
848
#[stable(feature = "rust1", since = "1.0.0")]
849
pub struct Split<B> {
850
buf: B,
@@ -873,7 +873,7 @@ impl<B: BufRead> Iterator for Split<B> {
873
/// An iterator over the lines of an instance of `BufRead` split on a newline
874
/// byte.
875
876
-/// See `BufReadExt::lines` for more information.
+/// See `BufRead::lines` for more information.
877
878
pub struct Lines<B> {
879
0 commit comments