diff options
Diffstat (limited to 'src/components/main/layout/flow.rs')
-rw-r--r-- | src/components/main/layout/flow.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/main/layout/flow.rs b/src/components/main/layout/flow.rs index a2ec046ca17..9ddd9b0e7e8 100644 --- a/src/components/main/layout/flow.rs +++ b/src/components/main/layout/flow.rs @@ -394,7 +394,7 @@ impl<'self> FlowContext { pub fn dump_indent(&self, indent: uint) { let mut s = ~"|"; for uint::range(0, indent) |_i| { - s += ~"---- "; + s += "---- "; } s += self.debug_str(); @@ -412,7 +412,7 @@ impl<'self> FlowContext { let mut s = inline.boxes.foldl(~"InlineFlow(children=", |s, box| { fmt!("%s b%d", *s, box.id()) }); - s += ~")"; + s += ")"; s }, BlockFlow(block) => { |