Update the compiler to not use printf/printfln

This commit is contained in:
Alex Crichton
2013-09-24 22:16:43 -07:00
parent 09a5338197
commit 409182de6d
80 changed files with 169 additions and 173 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;
/// }
/// ```