about summary refs log tree commit diff
path: root/src/libextra/arc.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-09-27 21:01:58 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-09-30 23:21:19 -0700
commitaf3b132285bc9314d545cae2e4eaef079a26252a (patch)
tree1c7116cb4d82388a6eb3da6e4088448ea24016ba /src/libextra/arc.rs
parent7e709bfd0dac1d5bbe5c97494980731b4d477e8f (diff)
downloadrust-af3b132285bc9314d545cae2e4eaef079a26252a.tar.gz
rust-af3b132285bc9314d545cae2e4eaef079a26252a.zip
syntax: Remove usage of fmt!
Diffstat (limited to 'src/libextra/arc.rs')
-rw-r--r--src/libextra/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/arc.rs b/src/libextra/arc.rs
index 40ddea53895..1cb30eaa040 100644
--- a/src/libextra/arc.rs
+++ b/src/libextra/arc.rs
@@ -505,7 +505,7 @@ impl<T:Freeze + Send> RWArc<T> {
         let inner = x.unwrap();
         let RWArcInner { failed: failed, data: data, _ } = inner;
         if failed {
-            fail2!(~"Can't unwrap poisoned RWArc - another task failed inside!")
+            fail2!("Can't unwrap poisoned RWArc - another task failed inside!")
         }
         data
     }