aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/layout/flow.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2014-05-03 22:17:45 +0200
committerMs2ger <ms2ger@gmail.com>2014-05-03 22:17:45 +0200
commit243814022e06c35c9bcdd99ccd281cb6ed180db0 (patch)
tree64dcd6f6eace86d63688100c37de00ea238262de /src/components/main/layout/flow.rs
parent731e66ff132e41cdc49bc5324c0e15be19c46ec2 (diff)
downloadservo-243814022e06c35c9bcdd99ccd281cb6ed180db0.tar.gz
servo-243814022e06c35c9bcdd99ccd281cb6ed180db0.zip
Replace all ~"" with "".to_owned().
Diffstat (limited to 'src/components/main/layout/flow.rs')
-rw-r--r--src/components/main/layout/flow.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/layout/flow.rs b/src/components/main/layout/flow.rs
index cda5b87e6a5..23d7e1ea219 100644
--- a/src/components/main/layout/flow.rs
+++ b/src/components/main/layout/flow.rs
@@ -913,7 +913,7 @@ impl<'a> ImmutableFlowUtils for &'a Flow {
/// Dumps the flow tree for debugging, with a prefix to indicate that we're at the given level.
fn dump_with_level(self, level: uint) {
- let mut indent = ~"";
+ let mut indent = "".to_owned();
for _ in range(0, level) {
indent.push_str("| ")
}