about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2015-04-20 17:51:56 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2015-04-20 17:51:56 -0700
commitd8943e1fa3598c3e77ef98c68d62bd9db72c0981 (patch)
treef7c9a9be54f4687b29a2f1fa336cd8b948be702d
parentf46c4e158d395cf6e186bf6afdf1705c12071cbe (diff)
downloadrust-d8943e1fa3598c3e77ef98c68d62bd9db72c0981.tar.gz
rust-d8943e1fa3598c3e77ef98c68d62bd9db72c0981.zip
Update reference to old_io in fmt docs
-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