diff options
author | Saurabh Chaturvedi <saurabh.chaturvedi63@gmail.com> | 2017-08-14 18:54:53 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-08-14 18:54:53 (GMT) |
commit | 143be366295038b36fc32c44b8e1b48a375eab56 (patch) | |
tree | 7ebfeeaeb014cdef34d4022bb438daccda90bc35 /Doc | |
parent | 8204b903683f9e0f037ccfaa87622716019914d7 (diff) | |
download | cpython-143be366295038b36fc32c44b8e1b48a375eab56.zip cpython-143be366295038b36fc32c44b8e1b48a375eab56.tar.gz cpython-143be366295038b36fc32c44b8e1b48a375eab56.tar.bz2 |
bpo-31191: Improve grammar in threading.Barrier docs (GH-3080)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/threading.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index cda859f..021e29e 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -875,8 +875,8 @@ Barrier Objects 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 -simultaneously. +all of the threads have made their :meth:`~Barrier.wait` calls. At this point, +the threads are released simultaneously. The barrier can be reused any number of times for the same number of threads. |