Skip to content

Commit

Permalink
bpo-31191: Improve grammar in threading.Barrier docs (GH-3080)
Browse files Browse the repository at this point in the history
  • Loading branch information
schedutron authored and Mariatta committed Aug 14, 2017
1 parent 8204b90 commit 143be36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/library/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 143be36

Please sign in to comment.