Rollup merge of #33456 - CryZe:barrier-wait-docs, r=GuillaumeGomez

Fix Typo in Barrier::wait documentation

This should be `have` instead of `has`.
This commit is contained in:
Steve Klabnik 2016-05-07 15:35:19 -04:00
commit 099e0879aa

View File

@ -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.