diff options
| author | Gorialis <[email protected]> | 2017-08-16 07:16:56 +0900 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-08-16 07:09:06 -0400 |
| commit | 80586cb0814641f0966d7e9d1582f1e4b58894fc (patch) | |
| tree | db93e99ea11f37ac57fdd700357baa96874ed36a /docs/migrating.rst | |
| parent | Add Client.latency, AutoShardedClient.latency and latencies. (diff) | |
| download | discord.py-80586cb0814641f0966d7e9d1582f1e4b58894fc.tar.xz discord.py-80586cb0814641f0966d7e9d1582f1e4b58894fc.zip | |
Minor fixes in migrating doc
Diffstat (limited to 'docs/migrating.rst')
| -rw-r--r-- | docs/migrating.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/migrating.rst b/docs/migrating.rst index 8cce4cd4..9da026c6 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -470,7 +470,7 @@ Event Changes A lot of events have gone through some changes. -Many events with ``server`` in the name where changed to use ``guild`` instead. +Many events with ``server`` in the name were changed to use ``guild`` instead. Before: @@ -754,7 +754,7 @@ Context Changes In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used. -The biggest change is that ``pass_context=True`` is now the default behaviour. Ergo: +The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo: .. code-block:: python3 @@ -849,8 +849,8 @@ For a full list of changes, see below: Command Changes ~~~~~~~~~~~~~~~~~ -As mentioned earlier, the first command change is that ``pass_context=True`` is now the -default, so there is no need to pass this as a parameter. +As mentioned earlier, the first command change is that ``pass_context=True`` no longer +exists, so there is no need to pass this as a parameter. Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check. @@ -1027,9 +1027,9 @@ The invocation order is as follows: 2. Cog local before invocation hook 3. Global before invocation hook 4. The actual command -5. Command local after invocation hooko -6. Cog local after invocation hooko -7. Global after invocation hooko +5. Command local after invocation hook +6. Cog local after invocation hook +7. Global after invocation hook Converter Changes ~~~~~~~~~~~~~~~~~~~ |