diff options
| author | bors <bors@rust-lang.org> | 2015-03-19 09:50:13 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-19 09:50:13 +0000 |
| commit | d5408f376f93123a043845b69d467d4b7686ae86 (patch) | |
| tree | 4f6e31db6cc3d40fbe8830a93e4b7f7267133839 /src/libstd/sys | |
| parent | 0084f92302b3352372bfd14ebbf083bae695d16e (diff) | |
| parent | 857035ade7577d23bac596eb43c34e6844ce0b74 (diff) | |
| download | rust-d5408f376f93123a043845b69d467d4b7686ae86.tar.gz rust-d5408f376f93123a043845b69d467d4b7686ae86.zip | |
Auto merge of #23507 - jbcrail:fix-comment-spelling, r=alexcrichton
I corrected misspelled comments in several crates.
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/common/rwlock.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/sys/common/rwlock.rs b/src/libstd/sys/common/rwlock.rs index fe374e1fd78..f7d7a5715bc 100644 --- a/src/libstd/sys/common/rwlock.rs +++ b/src/libstd/sys/common/rwlock.rs @@ -25,7 +25,7 @@ impl RWLock { /// thread to do so. /// /// Behavior is undefined if the rwlock has been moved between this and any - /// previous methodo call. + /// previous method call. #[inline] pub unsafe fn read(&self) { self.0.read() } @@ -35,7 +35,7 @@ impl RWLock { /// This function does not block the current thread. /// /// Behavior is undefined if the rwlock has been moved between this and any - /// previous methodo call. + /// previous method call. #[inline] pub unsafe fn try_read(&self) -> bool { self.0.try_read() } @@ -43,7 +43,7 @@ impl RWLock { /// to do so. /// /// Behavior is undefined if the rwlock has been moved between this and any - /// previous methodo call. + /// previous method call. #[inline] pub unsafe fn write(&self) { self.0.write() } @@ -53,7 +53,7 @@ impl RWLock { /// This function does not block the current thread. /// /// Behavior is undefined if the rwlock has been moved between this and any - /// previous methodo call. + /// previous method call. #[inline] pub unsafe fn try_write(&self) -> bool { self.0.try_write() } |
