Skip to content

Commit 44185dc

Browse files
committed
fix(sphinx): autosectionlabel_prefix_document to false
1 parent ebf6f16 commit 44185dc

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

discord/client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ def add_listener(self, func: Coro, name: str = MISSING) -> None:
12301230
TypeError
12311231
The ``func`` parameter is not a coroutine function.
12321232
ValueError
1233-
The ``name`` (event name) does not start with 'on_'
1233+
The ``name`` (event name) does not start with ``on_``
12341234
12351235
Example
12361236
-------
@@ -1294,7 +1294,7 @@ def listen(self, name: str = MISSING, once: bool = False) -> Callable[[Coro], Co
12941294
TypeError
12951295
The function being listened to is not a coroutine.
12961296
ValueError
1297-
The ``name`` (event name) does not start with 'on_'
1297+
The ``name`` (event name) does not start with ``on_``
12981298
12991299
Example
13001300
-------

docs/api/enums.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ of :class:`enum.Enum`.
907907
When this is the action, the type of :attr:`~AuditLogEntry.extra` is
908908
either a :class:`Role` or :class:`Member`. If the object is not found
909909
then it is a :class:`Object` with an ID being filled, a name, and a
910-
``type`` attribute set to either ``'role'`` or ``'member'`` to help
910+
``type`` attribute set to either ``role`` or ``member`` to help
911911
dictate what type of ID it is.
912912

913913
Possible attributes for :class:`AuditLogDiff`:
@@ -2362,7 +2362,7 @@ of :class:`enum.Enum`.
23622362

23632363
.. attribute:: advanced
23642364

2365-
Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements.
2365+
Both default channels and questions (``OnboardingPrompt``) will count towards the Onboarding requirements.
23662366

23672367
.. class:: ReactionType
23682368

docs/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def write_new():
9292

9393
always_document_param_types = True
9494
toc_object_entries_show_parents = "hide"
95+
autosectionlabel_prefix_document = True
9596

9697
ogp_site_url = "https://pycord.dev/"
9798
ogp_image = "https://pycord.dev/static/img/logo.png"

0 commit comments

Comments
 (0)