about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorChristopher Serr <cryze92@gmail.com>2016-05-06 11:18:05 +0200
committerChristopher Serr <cryze92@gmail.com>2016-05-06 11:18:05 +0200
commit32edf1d7a81a0db65282374daf846727c8e2a8fd (patch)
tree896e224348d4bd5b1de092baa822676b3858e760 /src/libstd/sync
parent0c07a3cc599b0a88c35b5c1bd3fc92fa6925e4ce (diff)
downloadrust-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.rs2
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.