Change 'print(fmt!(...))' to printf!/printfln! in src/lib*

This commit is contained in:
Birunthan Mohanathas
2013-07-22 19:03:39 +03:00
committed by Daniel Micay
parent af5a17b7d0
commit d047cf1ec6
27 changed files with 102 additions and 111 deletions

View File

@@ -833,7 +833,7 @@ impl<'self,T> ImmutableVector<'self, T> for &'self [T] {
* ~~~ {.rust}
* let v = &[1,2,3,4];
* for v.window_iter().advance |win| {
* io::println(fmt!("%?", win));
* printfln!(win);
* }
* ~~~
*
@@ -862,7 +862,7 @@ impl<'self,T> ImmutableVector<'self, T> for &'self [T] {
* ~~~ {.rust}
* let v = &[1,2,3,4,5];
* for v.chunk_iter().advance |win| {
* io::println(fmt!("%?", win));
* printfln!(win);
* }
* ~~~
*