fmt! -> format!

This commit is contained in:
Keegan McAllister 2013-10-29 15:11:25 -07:00 committed by Jack Moffitt
parent e7e7eab905
commit e2b7885b73
54 changed files with 274 additions and 274 deletions

View file

@ -74,7 +74,7 @@ pub struct TimerData {
impl Window {
pub fn Alert(&self, s: &DOMString) {
// Right now, just print to the console
io::println(fmt!("ALERT: %s", null_str_as_empty(s)));
io::println(format!("ALERT: {:s}", null_str_as_empty(s)));
}
pub fn Close(&self) {