aboutsummaryrefslogtreecommitdiff
path: root/discord/player.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2020-01-21 03:47:56 -0500
committerRapptz <[email protected]>2020-01-21 03:47:56 -0500
commit02397306b2ed76b3bc42b2b28e8672e839bdeaf5 (patch)
tree90286ce3d6ec654f4be9952a9459675c7fb52c74 /discord/player.py
parent[commands] Export max_concurrency and MaxConcurrencyReached in docs (diff)
downloaddiscord.py-02397306b2ed76b3bc42b2b28e8672e839bdeaf5.tar.xz
discord.py-02397306b2ed76b3bc42b2b28e8672e839bdeaf5.zip
Drop superfluous zero in version related changes in the documentation
Diffstat (limited to 'discord/player.py')
-rw-r--r--discord/player.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/player.py b/discord/player.py
index 7a573418..8a10d394 100644
--- a/discord/player.py
+++ b/discord/player.py
@@ -120,7 +120,7 @@ class FFmpegAudio(AudioSource):
User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and
:class:`FFmpegOpusAudio` work should subclass this.
- .. versionadded:: 1.3.0
+ .. versionadded:: 1.3
"""
def __init__(self, source, *, executable='ffmpeg', args, **subprocess_kwargs):
@@ -242,7 +242,7 @@ class FFmpegOpusAudio(FFmpegAudio):
The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you
know that the input source is opus encoded beforehand.
- .. versionadded:: 1.3.0
+ .. versionadded:: 1.3
.. warning::