aboutsummaryrefslogtreecommitdiff
path: root/discord/abc.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-01-13 20:35:44 -0500
committerRapptz <[email protected]>2017-01-13 20:35:44 -0500
commit33450cd1b6da0df3765db4222e3a0377ae27bd6b (patch)
tree25a2afff6a99eb0d3740ea382ee16a56f4205a21 /discord/abc.py
parent[commands] Make Command a descriptor for #426. (diff)
downloaddiscord.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.py2
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)