Update reference to old_io in fmt docs

This commit is contained in:
Matt Brubeck 2015-04-20 17:51:56 -07:00
parent f46c4e158d
commit d8943e1fa3

View file

@ -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