diff options
| author | Rapptz <[email protected]> | 2020-01-21 03:47:56 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-01-21 03:47:56 -0500 |
| commit | 02397306b2ed76b3bc42b2b28e8672e839bdeaf5 (patch) | |
| tree | 90286ce3d6ec654f4be9952a9459675c7fb52c74 /discord/channel.py | |
| parent | [commands] Export max_concurrency and MaxConcurrencyReached in docs (diff) | |
| download | discord.py-02397306b2ed76b3bc42b2b28e8672e839bdeaf5.tar.xz discord.py-02397306b2ed76b3bc42b2b28e8672e839bdeaf5.zip | |
Drop superfluous zero in version related changes in the documentation
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/discord/channel.py b/discord/channel.py index d618c451..2bd5c31c 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -219,7 +219,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): A :class:`dict` of target (either a role or a member) to :class:`PermissionOverwrite` to apply to the channel. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 Raises ------ @@ -431,7 +431,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): Requires :attr:`~.Permissions.manage_webhooks` permissions. - .. versionchanged:: 1.1.0 + .. versionchanged:: 1.1 Added the ``reason`` keyword-only parameter. Parameters @@ -474,7 +474,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): The webhook returned will not provide a token to do webhook actions, as Discord does not provide it. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 Parameters ----------- @@ -601,7 +601,7 @@ class VoiceChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hashable): def voice_states(self): """Returns a mapping of member IDs who have voice states in this channel. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 .. note:: @@ -666,7 +666,7 @@ class VoiceChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hashable): A :class:`dict` of target (either a role or a member) to :class:`PermissionOverwrite` to apply to the channel. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 Raises ------ @@ -776,7 +776,7 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): A :class:`dict` of target (either a role or a member) to :class:`PermissionOverwrite` to apply to the channel. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 Raises ------ |