Skip to content

Commit 095e06f

Browse files
authored
[3.11] Docs: Bump sphinx-lint and use double backticks for inline literals (GH-98441) (#98445)
Bump sphinx-lint and use double backticks for inline literals
1 parent 860efa3 commit 095e06f

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

Doc/c-api/init.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1800,7 +1800,7 @@ is not possible due to its implementation being opaque at build time.
18001800
18011801
.. note::
18021802
A freed key becomes a dangling pointer. You should reset the key to
1803-
`NULL`.
1803+
``NULL``.
18041804
18051805
18061806
Methods

Doc/library/asyncio-api-index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ await on multiple things with timeouts.
5757
- Monitor for completion.
5858

5959
* - :func:`timeout`
60-
- Run with a timeout. Useful in cases when `wait_for` is not suitable.
60+
- Run with a timeout. Useful in cases when ``wait_for`` is not suitable.
6161

6262
* - :func:`to_thread`
6363
- Asynchronously run a function in a separate OS thread.

Doc/library/pathlib.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ Pure paths provide the following methods and properties:
391391

392392
If you want to walk an arbitrary filesystem path upwards, it is
393393
recommended to first call :meth:`Path.resolve` so as to resolve
394-
symlinks and eliminate `".."` components.
394+
symlinks and eliminate ``".."`` components.
395395

396396

397397
.. data:: PurePath.name

Doc/library/subprocess.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ Instances of the :class:`Popen` class have the following methods:
829829

830830
On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
831831
CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
832-
parameter which includes `CREATE_NEW_PROCESS_GROUP`.
832+
parameter which includes ``CREATE_NEW_PROCESS_GROUP``.
833833

834834

835835
.. method:: Popen.terminate()

Doc/requirements.txt

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ sphinx==4.5.0
77

88
blurb
99

10-
# sphinx-lint 0.6.2 yields many default role errors due to the new regular
11-
# expression used for default role detection, so we don't use the version
12-
# until the errors are fixed.
13-
sphinx-lint==0.6.4
10+
sphinx-lint==0.6.7
1411

1512
# The theme used by the documentation is stored separately, so we need
1613
# to install that as well.

0 commit comments

Comments
 (0)