diff options
| author | Rapptz <[email protected]> | 2017-01-13 20:35:44 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-13 20:35:44 -0500 |
| commit | 33450cd1b6da0df3765db4222e3a0377ae27bd6b (patch) | |
| tree | 25a2afff6a99eb0d3740ea382ee16a56f4205a21 /discord/abc.py | |
| parent | [commands] Make Command a descriptor for #426. (diff) | |
| download | discord.py-33450cd1b6da0df3765db4222e3a0377ae27bd6b.tar.xz discord.py-33450cd1b6da0df3765db4222e3a0377ae27bd6b.zip | |
Fix documentation to properly use Messageable.send
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) |