From b1878224f262a6d8707f117d935afff3fa0d068c Mon Sep 17 00:00:00 2001 From: will <33510837+danrfq@users.noreply.github.com> Date: Sat, 2 Apr 2022 12:26:39 +0700 Subject: [PATCH] Fix capitalizations and typo in migrating guide --- docs/migrating.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/migrating.rst b/docs/migrating.rst index cfa7c6e29..31e137556 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -499,7 +499,7 @@ The main differences between text channels and threads are: - :attr:`Permissions.create_private_threads` - :attr:`Permissions.send_messages_in_threads` -- Threads do not have their own nsfw status, they inherit it from their parent channel. +- Threads do not have their own NSFW status, they inherit it from their parent channel. - This means that :class:`Thread` does not have an ``nsfw`` attribute. @@ -1204,7 +1204,7 @@ As an extension to the :ref:`asyncio changes ` To accommodate this, the following changes have been made: -- the ``setup`` and ``teardown`` functions in extensions must now be coroutines. +- The ``setup`` and ``teardown`` functions in extensions must now be coroutines. - :meth:`ext.commands.Bot.load_extension` must now be awaited. - :meth:`ext.commands.Bot.unload_extension` must now be awaited. - :meth:`ext.commands.Bot.reload_extension` must now be awaited. @@ -1404,7 +1404,7 @@ The following attributes have been removed: - Use :attr:`ext.commands.Context.clean_prefix` instead. -Miscellanous Changes +Miscellaneous Changes ~~~~~~~~~~~~~~~~~~~~~~ - :meth:`ext.commands.Bot.add_cog` is now raising :exc:`ClientException` when a cog with the same name is already loaded.