bpo-31191: Improve grammar in threading.Barrier docs (GH-3080) (GH-3224) · python/cpython@2dfafa3 (original) (raw)

Original file line number Diff line number Diff line change
@@ -875,8 +875,8 @@ Barrier Objects
875 875 This class provides a simple synchronization primitive for use by a fixed number
876 876 of threads that need to wait for each other. Each of the threads tries to pass
877 877 the barrier by calling the :meth:`~Barrier.wait` method and will block until
878 -all of the threads have made the call. At this points, the threads are released
879 -simultaneously.
878 +all of the threads have made their :meth:`~Barrier.wait` calls. At this point,
879 +the threads are released simultaneously.
880 880
881 881 The barrier can be reused any number of times for the same number of threads.
882 882