1
Fork 0

Remove references to old_{path,io}

This commit is contained in:
Tamir Duberstein 2015-04-20 19:01:20 -07:00
parent fe7f95fb3c
commit 71bc70ea1b
19 changed files with 12 additions and 36 deletions

View file

@ -2059,7 +2059,7 @@ impl<T: Iterator<Item=char>> Builder<T> {
}
}
/// Decodes a json value from an `&mut old_io::Reader`
/// Decodes a json value from an `&mut io::Read`
pub fn from_reader(rdr: &mut Read) -> Result<Json, BuilderError> {
let mut contents = Vec::new();
match rdr.read_to_end(&mut contents) {