Skip to content

Commit 685f557

Browse files
committed
Update docs to stop referencing BufReadExt
1 parent 750f2c6 commit 685f557

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/io/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ impl fmt::Display for CharsError {
844844
/// An iterator over the contents of an instance of `BufRead` split on a
845845
/// particular byte.
846846
///
847-
/// See `BufReadExt::split` for more information.
847+
/// See `BufRead::split` for more information.
848848
#[stable(feature = "rust1", since = "1.0.0")]
849849
pub struct Split<B> {
850850
buf: B,
@@ -873,7 +873,7 @@ impl<B: BufRead> Iterator for Split<B> {
873873
/// An iterator over the lines of an instance of `BufRead` split on a newline
874874
/// byte.
875875
///
876-
/// See `BufReadExt::lines` for more information.
876+
/// See `BufRead::lines` for more information.
877877
#[stable(feature = "rust1", since = "1.0.0")]
878878
pub struct Lines<B> {
879879
buf: B,

0 commit comments

Comments
 (0)