From c0dba0f4f2d1d0f364972f4669d77a914e3e597c Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 2 Mar 2016 23:27:57 -0500 Subject: [PATCH] [commands] Fix typo in Bot.upload docstring. --- discord/ext/commands/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index d0f21b44c..3f4559d23 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -284,7 +284,7 @@ class Bot(GroupMixin, discord.Client): See Also --------- - :meth:`Client.sned_file` + :meth:`Client.send_file` """ destination = _get_variable('_internal_channel') result = yield from self.send_file(destination, *args, **kwargs)