File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -259,16 +259,16 @@ Condition
259
259
260
260
Note that a task *may * return from this call spuriously,
261
261
which is why the caller should always re-check the state
262
- and be prepared to :meth: `wait ` again. For this reason, you may
263
- prefer to use :meth: `wait_for ` instead.
262
+ and be prepared to :meth: `~Condition. wait ` again. For this reason, you may
263
+ prefer to use :meth: `~Condition. wait_for ` instead.
264
264
265
265
.. coroutinemethod :: wait_for(predicate)
266
266
267
267
Wait until a predicate becomes *true *.
268
268
269
269
The predicate must be a callable which result will be
270
270
interpreted as a boolean value. The method will repeatedly
271
- :meth: `wait ` until the predicate evaluates to *true *. The final value is the
271
+ :meth: `~Condition. wait ` until the predicate evaluates to *true *. The final value is the
272
272
return value.
273
273
274
274
@@ -434,7 +434,7 @@ Barrier
434
434
.. coroutinemethod :: abort()
435
435
436
436
Put the barrier into a broken state. This causes any active or future
437
- calls to :meth: `wait ` to fail with the :class: `BrokenBarrierError `.
437
+ calls to :meth: `~Barrier. wait ` to fail with the :class: `BrokenBarrierError `.
438
438
Use this for example if one of the tasks needs to abort, to avoid infinite
439
439
waiting tasks.
440
440
You can’t perform that action at this time.
0 commit comments