Doc: sphinx-lint finds two other default roles. (GH-98019)

This commit is contained in:
Julien Palard 2022-10-07 09:10:51 +02:00 committed by GitHub
parent 13d4489142
commit 66cc46b2e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -150,7 +150,7 @@ The :mod:`functools` module defines the following functions:
arguments to the function must be hashable. arguments to the function must be hashable.
Distinct argument patterns may be considered to be distinct calls with Distinct argument patterns may be considered to be distinct calls with
separate cache entries. For example, `f(a=1, b=2)` and `f(b=2, a=1)` separate cache entries. For example, ``f(a=1, b=2)`` and ``f(b=2, a=1)``
differ in their keyword argument order and may have two separate cache differ in their keyword argument order and may have two separate cache
entries. entries.
@ -197,7 +197,7 @@ The :mod:`functools` module defines the following functions:
The cache keeps references to the arguments and return values until they age The cache keeps references to the arguments and return values until they age
out of the cache or until the cache is cleared. out of the cache or until the cache is cleared.
If a method is cached, the `self` instance argument is included in the If a method is cached, the ``self`` instance argument is included in the
cache. See :ref:`faq-cache-method-calls` cache. See :ref:`faq-cache-method-calls`
An `LRU (least recently used) cache An `LRU (least recently used) cache

View file

@ -10,7 +10,7 @@ blurb
# sphinx-lint 0.6.2 yields many default role errors due to the new regular # sphinx-lint 0.6.2 yields many default role errors due to the new regular
# expression used for default role detection, so we don't use the version # expression used for default role detection, so we don't use the version
# until the errors are fixed. # until the errors are fixed.
sphinx-lint==0.6.4 sphinx-lint==0.6.5
# The theme used by the documentation is stored separately, so we need # The theme used by the documentation is stored separately, so we need
# to install that as well. # to install that as well.