aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornumbermaniac <[email protected]>2021-05-25 16:23:14 +1000
committerGitHub <[email protected]>2021-05-25 02:23:14 -0400
commit3b555737778f718a4106fdc87a47e0a097bab37c (patch)
tree78cf4046f98373eb88befb8ebeb5c5bc25dfaac2
parentFix default hook signature (diff)
downloaddiscord.py-3b555737778f718a4106fdc87a47e0a097bab37c.tar.xz
discord.py-3b555737778f718a4106fdc87a47e0a097bab37c.zip
Fix minor typo in typing() docs
-rw-r--r--discord/abc.py2
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!')