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/client.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/client.py')
| -rw-r--r-- | discord/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/client.py b/discord/client.py index 6abcc275..60db623c 100644 --- a/discord/client.py +++ b/discord/client.py @@ -283,7 +283,7 @@ class Client: def cached_messages(self): """Sequence[:class:`.Message`]: Read-only list of messages the connected client has cached. - .. versionadded:: 1.1.0 + .. versionadded:: 1.1 """ return utils.SequenceProxy(self._connection._messages or []) @@ -1283,7 +1283,7 @@ class Client: This method is an API call. For general usage, consider :meth:`get_channel` instead. - .. versionadded:: 1.2.0 + .. versionadded:: 1.2 Raises ------- |