diff options
Diffstat (limited to 'discord/abc.py')
| -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 4d95eda8..d2ef45fe 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -589,7 +589,7 @@ class Messageable(metaclass=abc.ABCMeta): with channel.typing(): # do expensive stuff here - await channel.send_message('done!') + await channel.send('done!') """ return Typing(self) |