about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-05-07 15:35:19 -0400
committerSteve Klabnik <steve@steveklabnik.com>2016-05-07 15:35:19 -0400
commit099e0879aa00a81411166cde4a0641111cca38aa (patch)
tree2bd8ffdf0b1211c22320643d7132273d4e63c9c1 /src/libstd
parentf4453bba956898dca58c715b0ad1a97b490ab08f (diff)
parent32edf1d7a81a0db65282374daf846727c8e2a8fd (diff)
downloadrust-099e0879aa00a81411166cde4a0641111cca38aa.tar.gz
rust-099e0879aa00a81411166cde4a0641111cca38aa.zip
Rollup merge of #33456 - CryZe:barrier-wait-docs, r=GuillaumeGomez
Fix Typo in Barrier::wait documentation

This should be `have` instead of `has`.
Diffstat (limited to 'src/libstd')
-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.