Other language changes

This commit is contained in:
Keegan McAllister 2013-10-29 14:55:17 -07:00 committed by Jack Moffitt
parent 4d23ce41af
commit b451ff3e15
13 changed files with 45 additions and 45 deletions

View file

@ -23,7 +23,6 @@ use std::cell::Cell;
use std::comm;
use std::comm::SharedChan;
use std::hashmap::HashSet;
use std::io;
use std::ptr;
use std::int;
use std::libc;
@ -74,7 +73,7 @@ pub struct TimerData {
impl Window {
pub fn Alert(&self, s: &DOMString) {
// Right now, just print to the console
io::println(format!("ALERT: {:s}", null_str_as_empty(s)));
println(format!("ALERT: {:s}", null_str_as_empty(s)));
}
pub fn Close(&self) {