aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html/hubbub_html_parser.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-05-03 11:25:22 -0400
committerbors-servo <release+servo@mozilla.com>2014-05-03 11:25:22 -0400
commit09374f07e2cd152b2126c49c623f00997c36cfb2 (patch)
treeb3c9dc9992237ce816bec748e89494374e44227f /src/components/script/html/hubbub_html_parser.rs
parent897c54351a4bb81c7d146d5264d1baee18a32eec (diff)
parent86df4c1fc14cb68a0954bdf7c872fef253649aca (diff)
downloadservo-09374f07e2cd152b2126c49c623f00997c36cfb2.tar.gz
servo-09374f07e2cd152b2126c49c623f00997c36cfb2.zip
auto merge of #2297 : Ms2ger/servo/fail-owned-str, r=jdm
The ~"string" expression is being removed in upstream rust.
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r--src/components/script/html/hubbub_html_parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs
index 13cececb86a..18945f9062a 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -421,7 +421,7 @@ pub fn parse_html(page: &Page,
clone_node: |_node, deep| {
debug!("clone node");
if deep { error!("-- deep clone unimplemented"); }
- fail!(~"clone node unimplemented")
+ fail!("clone node unimplemented")
},
reparent_children: |_node, _new_parent| {
debug!("reparent children");