diff options
| author | Christopher Serr <cryze92@gmail.com> | 2016-05-06 11:18:05 +0200 |
|---|---|---|
| committer | Christopher Serr <cryze92@gmail.com> | 2016-05-06 11:18:05 +0200 |
| commit | 32edf1d7a81a0db65282374daf846727c8e2a8fd (patch) | |
| tree | 896e224348d4bd5b1de092baa822676b3858e760 /src/libstd/sync | |
| parent | 0c07a3cc599b0a88c35b5c1bd3fc92fa6925e4ce (diff) | |
| download | rust-32edf1d7a81a0db65282374daf846727c8e2a8fd.tar.gz rust-32edf1d7a81a0db65282374daf846727c8e2a8fd.zip | |
Fix Typo in Barrier::wait documentation
This should be `have` instead of `has`.
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/barrier.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/barrier.rs b/src/libstd/sync/barrier.rs index b543240c15a..b1267acdee6 100644 --- a/src/libstd/sync/barrier.rs +++ b/src/libstd/sync/barrier.rs @@ -71,7 +71,7 @@ impl Barrier { } } - /// Blocks the current thread until all threads has rendezvoused here. + /// Blocks the current thread until all threads have rendezvoused here. /// /// Barriers are re-usable after all threads have rendezvoused once, and can /// be used continuously. |
