From d8943e1fa3598c3e77ef98c68d62bd9db72c0981 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Mon, 20 Apr 2015 17:51:56 -0700 Subject: [PATCH] Update reference to old_io in fmt docs --- src/libcollections/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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