diff options
| author | Josh <[email protected]> | 2021-05-06 21:51:07 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-06 07:51:07 -0400 |
| commit | 3864fb37a0814345913c7ca4fd1978fa5e2ef7e2 (patch) | |
| tree | e5a411b6e35fe3485381880a40223cc574d5e2e9 /docs/quickstart.rst | |
| parent | Typehint emoji classes (diff) | |
| download | discord.py-3864fb37a0814345913c7ca4fd1978fa5e2ef7e2.tar.xz discord.py-3864fb37a0814345913c7ca4fd1978fa5e2ef7e2.zip | |
Fix various reference issues in documentation
Co-Authored-By: Riley Shaw <[email protected]>
Diffstat (limited to 'docs/quickstart.rst')
| -rw-r--r-- | docs/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 52553cd4..8b3daeb2 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -56,7 +56,7 @@ There's a lot going on here, so let's walk you through it step by step. is the same as the :attr:`Client.user`. 5. Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of - handling commands, which can be later automated with the :ref:`ext.commands` framework. + handling commands, which can be later automated with the :doc:`./ext/commands/index` framework. 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. |