Fix minor typo in typing() docs

This commit is contained in:
numbermaniac 2021-05-25 16:23:14 +10:00 committed by GitHub
parent ac061c31fb
commit 3b55573777
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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!')