aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/script_task.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/script_task.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/script_task.rs')
-rw-r--r--src/components/script/script_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/script_task.rs b/src/components/script/script_task.rs
index 43d1fd49b26..a9cd5edbaff 100644
--- a/src/components/script/script_task.rs
+++ b/src/components/script/script_task.rs
@@ -324,7 +324,7 @@ impl Page {
debug!("script: layout joined")
}
- None => fail!(~"reader forked but no join port?"),
+ None => fail!("reader forked but no join port?"),
}
}
}