1
Fork 0

core: Camel case some lesser-used modules

This commit is contained in:
Brian Anderson 2012-08-13 16:20:27 -07:00
parent 6b43c0c1ad
commit 5394e34aa4
40 changed files with 187 additions and 169 deletions

View file

@ -622,11 +622,11 @@ impl <A: to_json> option<A>: to_json {
}
}
impl json: to_str::to_str {
impl json: to_str::ToStr {
fn to_str() -> ~str { to_str(self) }
}
impl error: to_str::to_str {
impl error: to_str::ToStr {
fn to_str() -> ~str {
fmt!{"%u:%u: %s", self.line, self.col, *self.msg}
}