From c98443e9aa79212353f3975e3585213c5fc5d964 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 2 Jul 2017 17:49:56 -0400 Subject: [PATCH] Fix wrong order in migrating docs. --- docs/migrating.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/migrating.rst b/docs/migrating.rst index 16048faf1..9536bbd44 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: ::