Merge fall out of removing fmt!

This commit is contained in:
Alex Crichton 2013-09-30 23:21:54 -07:00
parent 1f52cf439b
commit dec37051dd
2 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@ impl Wrapper {
}
pub fn say_hi(&self) {
println(fmt!("hello %s", **self));
println!("hello {}", **self);
}
}