From 6cf7c4a7d7fe0b4c6223a8e91ecc713589ed2067 Mon Sep 17 00:00:00 2001 From: Cryptex <64497526+Cryptex-github@users.noreply.github.com> Date: Mon, 14 Mar 2022 18:01:48 -0700 Subject: [PATCH] Add message content to doc examples This also changes the wording of Context's attributes for consistency. --- docs/ext/commands/commands.rst | 6 +++--- docs/quickstart.rst | 7 ++++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst index 9493f1eeb..4549d66e7 100644 --- a/docs/ext/commands/commands.rst +++ b/docs/ext/commands/commands.rst @@ -178,9 +178,9 @@ As seen earlier, every command must take at least a single parameter, called the This parameter gives you access to something called the "invocation context". Essentially all the information you need to know how the command was executed. It contains a lot of useful information: -- :attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any. -- :attr:`.Context.message` to fetch the :class:`Message` of the command. -- :attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command. +- :attr:`.Context.guild` returns the :class:`Guild` of the command, if any. +- :attr:`.Context.message` returns the :class:`Message` of the command. +- :attr:`.Context.author` returns the :class:`Member` or :class:`User` that called the command. - :meth:`.Context.send` to send a message to the channel the command was used in. The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 8b3daeb2c..84c50d2c7 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -19,9 +19,14 @@ It looks something like this: .. code-block:: python3 + # This example requires the 'message_content' intent. + import discord - client = discord.Client() + intents = discord.Intents.default() + intents.message_content = True + + client = discord.Client(intents=intents) @client.event async def on_ready():