about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-12-18 15:10:37 -0800
committerHuon Wilson <dbau.pp+github@gmail.com>2014-12-23 16:13:15 +1100
commit832c3e3cd725d85963c70cfdce26b13a5c0d508f (patch)
tree45db7a4f4a40c744805f2037e3185889335fcf7c /src/libstd/sync
parent62fb41c32bd97c4e9bc286a1db5d7126a06b8b91 (diff)
downloadrust-832c3e3cd725d85963c70cfdce26b13a5c0d508f.tar.gz
rust-832c3e3cd725d85963c70cfdce26b13a5c0d508f.zip
Fix some spelling errors.
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/rwlock.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/rwlock.rs b/src/libstd/sync/rwlock.rs
index 07b2f2cf541..3f177a42f44 100644
--- a/src/libstd/sync/rwlock.rs
+++ b/src/libstd/sync/rwlock.rs
@@ -60,7 +60,7 @@ pub struct RWLock<T> {
     data: UnsafeCell<T>,
 }
 
-/// Structure representing a staticaly allocated RWLock.
+/// Structure representing a statically allocated RWLock.
 ///
 /// This structure is intended to be used inside of a `static` and will provide
 /// automatic global access as well as lazy initialization. The internal