about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-04-20 21:15:55 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-04-20 21:15:55 -0400
commit550c8d87a7ad6b9a4a8bea56136f40844436cc08 (patch)
tree5308c5c83abe02520830af6762214a640c95a0f1
parent1d082de2d9849cfcc667721570cd0a3e070f05d7 (diff)
parentd8943e1fa3598c3e77ef98c68d62bd9db72c0981 (diff)
Rollup merge of #24647 - mbrubeck:doc-edit, r=steveklabnik
None
-rw-r--r--src/libcollections/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/fmt.rs b/src/libcollections/fmt.rs
index 5f0d9012d1a..3dc193fdc62 100644
--- a/src/libcollections/fmt.rs
+++ b/src/libcollections/fmt.rs
@@ -246,7 +246,7 @@
 //!
 //! ```ignore
 //! format!      // described above
-//! write!       // first argument is a &mut old_io::Writer, the destination
+//! write!       // first argument is a &mut io::Write, the destination
 //! writeln!     // same as write but appends a newline
 //! print!       // the format string is printed to the standard output
 //! println!     // same as print but appends a newline