File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ callbacks:
111
111
are waiting on ` .wait() ` , all will resume running.
112
112
2 . Alternatively the ` Event ` may be cleared later. The timing of clearing the
113
113
` 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
115
115
execution reaches ` .wait() ` before the ` Event ` is cleared, it will not pause.
116
116
If the ` Event ` is cleared, it will pause until it is set again.
117
117
@@ -132,7 +132,7 @@ ELO examples are:
132
132
| :---------------------| :----:| :-----:| :---:| :------------------|
133
133
| [ Event] [ 4m ] | Y | Y | Y | |
134
134
| [ 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 |
136
136
| [ Delay_ms] [ 2m ] | Y | Y | Y | Self-setting |
137
137
| [ WaitAll] ( ./EVENTS.md#42-waitall ) | Y | Y | N | See below |
138
138
| [ WaitAny] ( ./EVENTS.md#41-waitany ) | Y | Y | N | |
You can’t perform that action at this time.
0 commit comments