From 33450cd1b6da0df3765db4222e3a0377ae27bd6b Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 13 Jan 2017 20:35:44 -0500 Subject: Fix documentation to properly use Messageable.send --- discord/abc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/abc.py') 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) -- cgit v1.2.3