aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorArnav Jindal <[email protected]>2021-04-20 07:56:56 +0530
committerGitHub <[email protected]>2021-04-19 22:26:56 -0400
commit2e6c28bd60e1a7017fda6bd995d9c01e6517fe51 (patch)
treef8b46dbfec29629e34f81a4091b4c6e164641e36 /docs
parent[commands] Actually expose the FlagError base error (diff)
downloaddiscord.py-2e6c28bd60e1a7017fda6bd995d9c01e6517fe51.tar.xz
discord.py-2e6c28bd60e1a7017fda6bd995d9c01e6517fe51.zip
Bump Python version in Quickstart documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/discord.rst2
-rw-r--r--docs/faq.rst2
-rw-r--r--docs/intro.rst5
3 files changed, 4 insertions, 5 deletions
diff --git a/docs/discord.rst b/docs/discord.rst
index 43416d0f..ac12417f 100644
--- a/docs/discord.rst
+++ b/docs/discord.rst
@@ -42,7 +42,7 @@ Creating a Bot account is a pretty straightforward process.
.. warning::
It should be worth noting that this token is essentially your bot's
- password. You should **never** share this to someone else. In doing so,
+ password. You should **never** share this with someone else. In doing so,
someone can log in to your bot and do malicious things, such as leaving
servers, ban all members inside a server, or pinging everyone maliciously.
diff --git a/docs/faq.rst b/docs/faq.rst
index aa5bf976..3f46d2a9 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -98,7 +98,7 @@ The constructor may be used for static activities, while :meth:`Client.change_pr
There is a high chance of disconnecting if presences are changed right after connecting.
The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum.
-For memory optimisation purposes, some activities are offered in slimmed down versions:
+For memory optimisation purposes, some activities are offered in slimmed-down versions:
- :class:`Game`
- :class:`Streaming`
diff --git a/docs/intro.rst b/docs/intro.rst
index e5592163..12a73c70 100644
--- a/docs/intro.rst
+++ b/docs/intro.rst
@@ -13,9 +13,8 @@ in creating applications that utilise the Discord API.
Prerequisites
---------------
-discord.py works with Python 3.5.3 or higher. Support for earlier versions of Python
-is not provided. Python 2.7 or lower is not supported. Python 3.4 or lower is not supported
-due to one of the dependencies (:doc:`aiohttp <aio:index>`) not supporting Python 3.4.
+discord.py works with Python 3.8 or higher. Support for earlier versions of Python
+is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported.
.. _installing: