Skip to content

Commit 708ad64

Browse files
frewsxcvsteveklabnik
authored andcommitted
Update docs to stop referencing BufReadExt
1 parent 9532106 commit 708ad64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/io/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ impl fmt::Display for CharsError {
845845
/// An iterator over the contents of an instance of `BufRead` split on a
846846
/// particular byte.
847847
///
848-
/// See `BufReadExt::split` for more information.
848+
/// See `BufRead::split` for more information.
849849
#[stable(feature = "rust1", since = "1.0.0")]
850850
pub struct Split<B> {
851851
buf: B,
@@ -874,7 +874,7 @@ impl<B: BufRead> Iterator for Split<B> {
874874
/// An iterator over the lines of an instance of `BufRead` split on a newline
875875
/// byte.
876876
///
877-
/// See `BufReadExt::lines` for more information.
877+
/// See `BufRead::lines` for more information.
878878
#[stable(feature = "rust1", since = "1.0.0")]
879879
pub struct Lines<B> {
880880
buf: B,

0 commit comments

Comments
 (0)