doc: mut not needed

This commit is contained in:
Tshepang Lekhonkhobe 2016-05-05 23:55:08 +02:00
parent 102bab3d68
commit 8e9008dc30

View File

@ -182,7 +182,7 @@
//!
//! # fn foo() -> io::Result<()> {
//! let f = try!(File::open("foo.txt"));
//! let mut reader = BufReader::new(f);
//! let reader = BufReader::new(f);
//!
//! for line in reader.lines() {
//! let line = try!(line);