aboutsummaryrefslogtreecommitdiff
path: root/docs/migrating.rst
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-07-02 17:49:56 -0400
committerRapptz <[email protected]>2017-07-02 17:49:56 -0400
commitc98443e9aa79212353f3975e3585213c5fc5d964 (patch)
treeb25ebb2cb80e896322fe37666136f548d396a5c7 /docs/migrating.rst
parentAllow PartialReactionEmoji in add_reaction and remove_reaction. (diff)
downloaddiscord.py-c98443e9aa79212353f3975e3585213c5fc5d964.tar.xz
discord.py-c98443e9aa79212353f3975e3585213c5fc5d964.zip
Fix wrong order in migrating docs.
Diffstat (limited to 'docs/migrating.rst')
-rw-r--r--docs/migrating.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/migrating.rst b/docs/migrating.rst
index 16048faf..9536bbd4 100644
--- a/docs/migrating.rst
+++ b/docs/migrating.rst
@@ -890,8 +890,8 @@ All command extension events have changed.
Before: ::
- on_command(ctx, command)
- on_command_completion(ctx, command)
+ on_command(command, ctx)
+ on_command_completion(command, ctx)
on_command_error(error, ctx)
After: ::