aboutsummaryrefslogtreecommitdiff
path: root/docs/quickstart.rst
diff options
context:
space:
mode:
authorArthaxeres <[email protected]>2020-12-31 10:57:49 +0300
committerGitHub <[email protected]>2020-12-31 02:57:49 -0500
commit2e026a2dab4d29af56b84163e886e93ebc616f29 (patch)
tree854d3c4c4febe8dec47a651d968d1ddf03a6323b /docs/quickstart.rst
parentInclude pending as a possible member_update trigger (diff)
downloaddiscord.py-2e026a2dab4d29af56b84163e886e93ebc616f29.tar.xz
discord.py-2e026a2dab4d29af56b84163e886e93ebc616f29.zip
Update quickstart.rst to not use "reply"
Replace the word "reply" since we are actually not using Message.reply
Diffstat (limited to 'docs/quickstart.rst')
-rw-r--r--docs/quickstart.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quickstart.rst b/docs/quickstart.rst
index c1ffb85d..8e685efa 100644
--- a/docs/quickstart.rst
+++ b/docs/quickstart.rst
@@ -11,7 +11,7 @@ if you don't check the :ref:`installing` portion.
A Minimal Bot
---------------
-Let's make a bot that replies to a specific message and walk you through it.
+Let's make a bot that responds to a specific message and walk you through it.
It looks something like this:
@@ -53,7 +53,7 @@ There's a lot going on here, so let's walk you through it step by step.
sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author`
is the same as the :attr:`Client.user`.
5. Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it is,
- then we reply in the channel it was used in with ``'Hello!'``.
+ then we send a message in the channel it was used in with ``'Hello!'``.
6. Finally, we run the bot with our login token. If you need help getting your token or creating a bot,
look in the :ref:`discord-intro` section.