Fix spelling errors.

This commit is contained in:
Joseph Crail
2014-07-02 21:27:07 -04:00
committed by Alex Crichton
parent 8297edd549
commit e3fa23bcb6
29 changed files with 36 additions and 36 deletions

View File

@@ -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],