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

@ -410,7 +410,7 @@ impl<'self, View> AbstractNode<View> {
}
s.push_str(self.debug_str());
debug!("%s", s);
debug!("{:s}", s);
// FIXME: this should have a pure version?
for kid in self.children() {
@ -420,7 +420,7 @@ impl<'self, View> AbstractNode<View> {
/// Returns a string that describes this node.
pub fn debug_str(&self) -> ~str {
fmt!("%?", self.type_id())
format!("{:?}", self.type_id())
}
pub fn children(&self) -> AbstractNodeChildrenIterator<View> {