diff options
| author | numbermaniac <[email protected]> | 2021-05-25 16:23:14 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-25 02:23:14 -0400 |
| commit | 3b555737778f718a4106fdc87a47e0a097bab37c (patch) | |
| tree | 78cf4046f98373eb88befb8ebeb5c5bc25dfaac2 | |
| parent | Fix default hook signature (diff) | |
| download | discord.py-3b555737778f718a4106fdc87a47e0a097bab37c.tar.xz discord.py-3b555737778f718a4106fdc87a47e0a097bab37c.zip | |
Fix minor typo in typing() docs
| -rw-r--r-- | discord/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/abc.py b/discord/abc.py index f794cd99..a16afe8e 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -1315,7 +1315,7 @@ class Messageable(Protocol): Example Usage: :: async with channel.typing(): - # stimulate something heavy + # simulate something heavy await asyncio.sleep(10) await channel.send('done!') |