@@ -113,7 +113,7 @@ class RawMessageDeleteEvent(_RawReprMixin):
113113 cached_message: Optional[:class:`Message`]
114114 The cached message, if found in the internal message cache.
115115 data: :class:`dict`
116- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-delete>`_ .
116+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-delete>`__ .
117117
118118 .. versionadded:: 2.5
119119 """
@@ -145,7 +145,7 @@ class RawBulkMessageDeleteEvent(_RawReprMixin):
145145 cached_messages: List[:class:`Message`]
146146 The cached messages, if found in the internal message cache.
147147 data: :class:`dict`
148- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-delete-bulk>`_ .
148+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-delete-bulk>`__ .
149149
150150 .. versionadded:: 2.5
151151 """
@@ -181,7 +181,7 @@ class RawMessageUpdateEvent(_RawReprMixin):
181181 .. versionadded:: 1.7
182182
183183 data: :class:`dict`
184- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway#message-update>`_
184+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway#message-update>`__
185185 cached_message: Optional[:class:`Message`]
186186 The cached message, if found in the internal message cache. Represents the message before
187187 it is modified by the data in :attr:`RawMessageUpdateEvent.data`.
@@ -244,7 +244,7 @@ class RawReactionActionEvent(_RawReprMixin):
244244 type: :class:`ReactionType`
245245 The type of reaction added.
246246 data: :class:`dict`
247- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-add>`_ .
247+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-add>`__ .
248248
249249 .. versionadded:: 2.5
250250 """
@@ -297,7 +297,7 @@ class RawReactionClearEvent(_RawReprMixin):
297297 guild_id: Optional[:class:`int`]
298298 The guild ID where the reactions got cleared.
299299 data: :class:`dict`
300- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-remove-all>`_ .
300+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-remove-all>`__ .
301301
302302 .. versionadded:: 2.5
303303 """
@@ -339,7 +339,7 @@ class RawReactionClearEmojiEvent(_RawReprMixin):
339339 type: :class:`ReactionType`
340340 The type of reaction removed.
341341 data: :class:`dict`
342- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-remove-emoji>`_ .
342+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-remove-emoji>`__ .
343343
344344 .. versionadded:: 2.5
345345 """
@@ -386,7 +386,7 @@ class RawIntegrationDeleteEvent(_RawReprMixin):
386386 guild_id: :class:`int`
387387 The guild ID where the integration got deleted.
388388 data: :class:`dict`
389- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#integration-delete>`_ .
389+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#integration-delete>`__ .
390390
391391 .. versionadded:: 2.5
392392 """
@@ -420,7 +420,7 @@ class RawThreadUpdateEvent(_RawReprMixin):
420420 parent_id: :class:`int`
421421 The ID of the channel the thread belongs to.
422422 data: :class:`dict`
423- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-update>`_ .
423+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-update>`__ .
424424 thread: :class:`discord.Thread` | None
425425 The thread, if it could be found in the internal cache.
426426 """
@@ -455,7 +455,7 @@ class RawThreadDeleteEvent(_RawReprMixin):
455455 thread: Optional[:class:`discord.Thread`]
456456 The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache.
457457 data: :class:`dict`
458- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-delete>`_ .
458+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-delete>`__ .
459459
460460 .. versionadded:: 2.5
461461 """
@@ -485,7 +485,7 @@ class RawVoiceChannelStatusUpdateEvent(_RawReprMixin):
485485 status: Optional[:class:`str`]
486486 The new new voice channel status.
487487 data: :class:`dict`
488- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#voice-channel-status-update>`_ .
488+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#voice-channel-status-update>`__ .
489489 """
490490
491491 __slots__ = ("id" , "guild_id" , "status" , "data" )
@@ -519,7 +519,7 @@ class RawTypingEvent(_RawReprMixin):
519519 member: Optional[:class:`Member`]
520520 The member who started typing. Only available if the member started typing in a guild.
521521 data: :class:`dict`
522- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#typing-start>`_ .
522+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#typing-start>`__ .
523523
524524 .. versionadded:: 2.5
525525 """
@@ -553,7 +553,7 @@ class RawMemberRemoveEvent(_RawReprMixin):
553553 guild_id: :class:`int`
554554 The ID of the guild the user left.
555555 data: :class:`dict`
556- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-member-remove>`_ .
556+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-member-remove>`__ .
557557
558558 .. versionadded:: 2.5
559559 """
@@ -584,7 +584,7 @@ class RawScheduledEventSubscription(_RawReprMixin):
584584 Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on
585585 the event called.
586586 data: :class:`dict`
587- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-scheduled-event-user-add>`_ .
587+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-scheduled-event-user-add>`__ .
588588
589589 .. versionadded:: 2.5
590590 """
@@ -644,7 +644,7 @@ class AutoModActionExecutionEvent:
644644 matched_content: :class:`str`
645645 The substring in the content that was matched.
646646 data: :class:`dict`
647- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#auto-moderation-action-execution>`_ .
647+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#auto-moderation-action-execution>`__ .
648648
649649 .. versionadded:: 2.5
650650 """
@@ -739,7 +739,7 @@ class RawThreadMembersUpdateEvent(_RawReprMixin):
739739 member_count: :class:`int`
740740 The approximate number of members in the thread. Maximum of 50.
741741 data: :class:`dict`
742- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-members-update>`_ .
742+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-members-update>`__ .
743743
744744 .. versionadded:: 2.5
745745 """
@@ -780,7 +780,7 @@ class RawAuditLogEntryEvent(_RawReprMixin):
780780 contains extra information. See :class:`AuditLogAction` for
781781 which actions have this field filled out.
782782 data: :class:`dict`
783- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-audit-log-entry-create>`_ .
783+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-audit-log-entry-create>`__ .
784784 """
785785
786786 __slots__ = (
@@ -831,7 +831,7 @@ class RawMessagePollVoteEvent(_RawReprMixin):
831831 added: :class:`bool`
832832 Whether this vote was added or removed.
833833 data: :class:`dict`
834- The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway#message-poll-vote-add>`
834+ The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway#message-poll-vote-add>`__
835835 """
836836
837837 __slots__ = (
0 commit comments