This commit is contained in:
Ty Overby 2016-02-07 17:42:45 -08:00
parent 4bbcac9f78
commit 3e8833b70e
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ impl From<IoError> for DecodingError {
/// ```rust,ignore
/// let dr = bincode::rustc_serialize::DecoderReader::new(&mut some_reader, SizeLimit::Infinite);
/// let result: T = Decodable::decode(&mut dr);
/// let bytes_red = dr.bytes_read();
/// let bytes_read = dr.bytes_read();
/// ```
pub struct DecoderReader<'a, R: 'a> {
reader: &'a mut R,