diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-12-18 15:10:37 -0800 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-12-23 16:13:15 +1100 |
| commit | 832c3e3cd725d85963c70cfdce26b13a5c0d508f (patch) | |
| tree | 45db7a4f4a40c744805f2037e3185889335fcf7c /src/libstd/sync | |
| parent | 62fb41c32bd97c4e9bc286a1db5d7126a06b8b91 (diff) | |
| download | rust-832c3e3cd725d85963c70cfdce26b13a5c0d508f.tar.gz rust-832c3e3cd725d85963c70cfdce26b13a5c0d508f.zip | |
Fix some spelling errors.
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/rwlock.rs | 2 |
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 |
