1
Fork 0

rollup merge of #20722: alexcrichton/audit-show

Conflicts:
	src/libcollections/vec.rs
	src/libcore/fmt/mod.rs
	src/librustdoc/html/format.rs
This commit is contained in:
Alex Crichton 2015-01-07 17:18:59 -08:00
commit a204dc56c9
22 changed files with 76 additions and 78 deletions

View file

@ -60,7 +60,7 @@ pub fn is_sep(c: char) -> bool {
impl fmt::Show for Path {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Path {{ {} }}", self.display())
fmt::Show::fmt(&self.display(), f)
}
}

View file

@ -87,7 +87,7 @@ pub struct Path {
impl fmt::Show for Path {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Path {{ {} }}", self.display())
fmt::Show::fmt(&self.display(), f)
}
}