File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -83,11 +83,12 @@ use marker::{Reflect, Sized};
83
83
// Any trait
84
84
///////////////////////////////////////////////////////////////////////////////
85
85
86
- /// A type to emulate dynamic typing. See the [module-level documentation][mod] for more details.
86
+ /// A type to emulate dynamic typing.
87
87
///
88
88
/// Every type with no non-`'static` references implements `Any`.
89
+ /// See the [module-level documentation][mod] for more details.
89
90
///
90
- /// [mod]: ../ index.html
91
+ /// [mod]: index.html
91
92
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
92
93
pub trait Any : Reflect + ' static {
93
94
/// Get the `TypeId` of `self`
Original file line number Diff line number Diff line change @@ -618,9 +618,6 @@ pub trait BufRead: Read {
618
618
/// The iterator returned from this function will yield instances of
619
619
/// `io::Result<String>`. Each string returned will *not* have a newline
620
620
/// byte (the 0xA byte) at the end.
621
- ///
622
- /// This function will yield errors whenever `read_string` would have also
623
- /// yielded an error.
624
621
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
625
622
fn lines ( self ) -> Lines < Self > where Self : Sized {
626
623
Lines { buf : self }
You can’t perform that action at this time.
0 commit comments