diff options
| author | Rapptz <[email protected]> | 2020-01-21 19:48:52 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-01-21 19:48:52 -0500 |
| commit | 733962df12bcaa18d15992e79ff94ea3c9bd3778 (patch) | |
| tree | b2e9dff344ab68a018dce41f450b7c5a302f33d7 /docs | |
| parent | [commands] Implement Command.__call__ (diff) | |
| download | discord.py-733962df12bcaa18d15992e79ff94ea3c9bd3778.tar.xz discord.py-733962df12bcaa18d15992e79ff94ea3c9bd3778.zip | |
Drop final 0 in versionadded numbers in api.rst
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api.rst | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/api.rst b/docs/api.rst index e4302843..e08b415e 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -409,7 +409,7 @@ to handle it, which defaults to print a traceback and ignoring the exception. if the message is not found in the internal message cache, then this event will not be called. Consider using :func:`on_raw_reaction_clear_emoji` instead. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 :param reaction: The reaction that got cleared. :type reaction: :class:`Reaction` @@ -419,7 +419,7 @@ to handle it, which defaults to print a traceback and ignoring the exception. Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 :param payload: The raw event payload data. :type payload: :class:`RawReactionClearEmojiEvent` @@ -650,7 +650,7 @@ to handle it, which defaults to print a traceback and ignoring the exception. Called when an :class:`Invite` is created. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 .. note:: @@ -664,7 +664,7 @@ to handle it, which defaults to print a traceback and ignoring the exception. Called when an :class:`Invite` is deleted. - .. versionadded:: 1.3.0 + .. versionadded:: 1.3 .. note:: @@ -822,9 +822,6 @@ of :class:`enum.Enum`. Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message. - .. versionchanged:: 1.3.0 - The ``channel_follow_add`` attribute was added. - .. attribute:: default The default message type. This is the same as regular messages. @@ -872,6 +869,8 @@ of :class:`enum.Enum`. The system message denoting that an announcement channel has been followed. + .. versionadded:: 1.3 + .. class:: ActivityType Specifies the type of :class:`Activity`. This is used to check how to |