Skip to content

Commit 33b5769

Browse files
committed
Tutorial: fix doc formatting.
1 parent 8253a5a commit 33b5769

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

v3/docs/TUTORIAL.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,16 +1181,17 @@ Constructor:
11811181
* No args.
11821182

11831183
Synchronous methods:
1184-
* `set(data=None)` Trigger the message with optional payload.
1184+
* `set(data=None)` Trigger the `Message` with optional payload (may be any
1185+
Python object).
11851186
* `is_set()` Returns `True` if the `Message` is set, `False` if `.clear()` has
1186-
beein issued.
1187+
been issued.
11871188
* `clear()` Clears the triggered status. At least one task waiting on the
11881189
message should issue `clear()`.
11891190
* `value()` Return the payload.
11901191

11911192
Asynchronous Method:
1192-
* `wait` Pause until message is triggered. You can also `await` the message as
1193-
per the examples.
1193+
* `wait()` Pause until message is triggered. You can also `await` the message
1194+
as per the examples.
11941195

11951196
The following example shows multiple tasks awaiting a `Message`.
11961197
```python

0 commit comments

Comments
 (0)