diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
commit | dfa4e045a363fd1dd31c1d57002fc78c10de85a2 (patch) | |
tree | 3f044e4d37129fb3dd70d1535cad09c2f78d9563 /Doc/library/threading.rst | |
parent | a468db9b0bd8d17575923b91db5fbc4a222d4252 (diff) | |
parent | 4882cacab6bcaf90ac496fc8878987598e7665c1 (diff) | |
download | cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.zip cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.gz cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.bz2 |
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index e7a3544..5269994 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -874,7 +874,7 @@ This class provides a simple synchronization primitive for use by a fixed number of threads that need to wait for each other. Each of the threads tries to pass the barrier by calling the :meth:`~Barrier.wait` method and will block until all of the threads have made the call. At this points, the threads are released -simultanously. +simultaneously. The barrier can be reused any number of times for the same number of threads. |