about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-10 15:17:01 -0700
committerbors <bors@rust-lang.org>2014-06-10 15:17:01 -0700
commitb1302f9c4f6619bf83fff39b305b990d8f628eb7 (patch)
tree00429f512aed143f46f4b0ea8a23c2028db2c123 /src/liballoc
parent7f777a5ba49785a74e5365e9897ddf4c02ea8519 (diff)
parentc2c99463720e758d5aa0bdcea19dc5b3dd67292c (diff)
downloadrust-b1302f9c4f6619bf83fff39b305b990d8f628eb7.tar.gz
rust-b1302f9c4f6619bf83fff39b305b990d8f628eb7.zip
auto merge of #14764 : jbcrail/rust/fix-more-comments, r=alexcrichton
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 a8eb4b3407e..5f285010998 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -184,7 +184,7 @@ impl<T: Share + Send> Drop for Arc<T> {
 
         // This fence is needed to prevent reordering of use of the data and
         // deletion of the data. Because it is marked `Release`, the
-        // decreasing of the reference count sychronizes with this `Acquire`
+        // 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
         // happens before the deletion of the data.