From 3b555737778f718a4106fdc87a47e0a097bab37c Mon Sep 17 00:00:00 2001 From: numbermaniac <5206120+numbermaniac@users.noreply.github.com> Date: Tue, 25 May 2021 16:23:14 +1000 Subject: [PATCH] Fix minor typo in typing() docs --- discord/abc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/abc.py b/discord/abc.py index f794cd99e..a16afe8e6 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!')