[Python-checkins] bpo-31191: Improve grammar in threading.Barrier docs (GH-3080) (GH-3224)

Mariatta webhook-mailer at python.org
Sun Aug 27 18:19:11 EDT 2017


https://github.com/python/cpython/commit/2dfafa3c565c0b51920269a891fa270848b378d5
commit: 2dfafa3c565c0b51920269a891fa270848b378d5
branch: 3.6
author: Mariatta <Mariatta at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2017-08-27T15:19:08-07:00
summary:

bpo-31191: Improve grammar in threading.Barrier docs (GH-3080) (GH-3224)

(cherry picked from commit 143be366295038b36fc32c44b8e1b48a375eab56)

files:
M Doc/library/threading.rst

diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index cda859fe4cb..021e29e7124 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.
 



More information about the Python-checkins mailing list