aboutsummaryrefslogtreecommitdiff
path: root/docs/ext/commands
diff options
context:
space:
mode:
authorDante Dam <[email protected]>2019-07-08 17:57:22 -0700
committerRapptz <[email protected]>2019-07-22 20:46:40 -0400
commitda41cceb417fa2f33012f42f756a1867bedb2e4b (patch)
tree16e677b7679ce2fcddcb94c41558bd7e3a72ec7a /docs/ext/commands
parentAdd FFmpegOpusAudio and other voice improvements (diff)
downloaddiscord.py-da41cceb417fa2f33012f42f756a1867bedb2e4b.tar.xz
discord.py-da41cceb417fa2f33012f42f756a1867bedb2e4b.zip
[commands] Fix confusion between it's and its
Diffstat (limited to 'docs/ext/commands')
-rw-r--r--docs/ext/commands/commands.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst
index 493e46d9..dd5047b9 100644
--- a/docs/ext/commands/commands.rst
+++ b/docs/ext/commands/commands.rst
@@ -224,7 +224,7 @@ This works with any callable, such as a function that would convert a string to
bool
^^^^^^
-Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on it's given content:
+Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:
.. code-block:: python3