Skip to content

Commit a2df841

Browse files
committed
EVENTS.md Minor corrections.
1 parent 3e738da commit a2df841

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

v3/docs/EVENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ callbacks:
111111
are waiting on `.wait()`, all will resume running.
112112
2. Alternatively the `Event` may be cleared later. The timing of clearing the
113113
`Event` determines its behaviour if, at the time when the `Event` is set, a
114-
task waiting on the `await event.wait()` statement has not yet reached it. If
114+
task with an `await event.wait()` statement has not yet reached it. If
115115
execution reaches `.wait()` before the `Event` is cleared, it will not pause.
116116
If the `Event` is cleared, it will pause until it is set again.
117117

@@ -132,7 +132,7 @@ ELO examples are:
132132
|:---------------------|:----:|:-----:|:---:|:------------------|
133133
| [Event][4m] | Y | Y | Y | |
134134
| [ThreadSafeFlag][3m] | Y | N | Y | Self-clearing |
135-
| [Message][7m] | Y | N | Y | Subclass of above |
135+
| [Message][7m] | Y | Y | Y | Subclass of above |
136136
| [Delay_ms][2m] | Y | Y | Y | Self-setting |
137137
| [WaitAll](./EVENTS.md#42-waitall) | Y | Y | N | See below |
138138
| [WaitAny](./EVENTS.md#41-waitany) | Y | Y | N | |

0 commit comments

Comments
 (0)