auto merge of #9550 : alexcrichton/rust/remove-printf, r=thestinger

The 0.8 release was cut, down with printf!
This commit is contained in:
bors
2013-09-27 08:21:23 -07:00
81 changed files with 169 additions and 193 deletions

View File

@@ -1695,7 +1695,7 @@ pub trait StrSlice<'self> {
/// let i = 0u;
/// while i < s.len() {
/// let CharRange {ch, next} = s.char_range_at(i);
/// printfln!("%u: %c", i, ch);
/// println!("{}: {}", i, ch);
/// i = next;
/// }
/// ```