about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2014-07-02 21:27:07 -0400
committerAlex Crichton <alex@alexcrichton.com>2014-07-03 12:54:51 -0700
commite3fa23bcb64064d50c2a9e3b5870bc82081359d9 (patch)
tree55c7f812cc8393b3e2ac7deef52886e811c45ff9 /src/liballoc
parent8297edd54976d06f4753bc18684614516d156243 (diff)
downloadrust-e3fa23bcb64064d50c2a9e3b5870bc82081359d9.tar.gz
rust-e3fa23bcb64064d50c2a9e3b5870bc82081359d9.zip
Fix spelling errors.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index 38ed511c458..9b4f879e61e 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -185,7 +185,7 @@ impl<T: Share + Send> Drop for Arc<T> {
         // deletion of the data. Because it is marked `Release`, the
         // decreasing of the reference count synchronizes with this `Acquire`
         // fence. This means that use of the data happens before decreasing
-        // the refernce count, which happens before this fence, which
+        // the reference count, which happens before this fence, which
         // happens before the deletion of the data.
         //
         // As explained in the [Boost documentation][1],