diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:30:01 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:30:01 (GMT) |
commit | 4882cacab6bcaf90ac496fc8878987598e7665c1 (patch) | |
tree | 6dab1cbde4725b432bb3fd06e329d003c6a83376 /Doc/library/threading.rst | |
parent | 52a3b74900db90dfbc5d6ce5145bce02d172b1b1 (diff) | |
download | cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.zip cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.tar.gz cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.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 f59ffe5..0133a8f 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. |