From: Mariusz Felisiak Date: Tue, 18 Nov 2025 10:32:15 +0000 (+0100) Subject: Add missing backticks in os and decimal docs (#141699) X-Git-Tag: v3.15.0a2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b87613f21474ea848fec435cbfe63d8cb1c7c44c;p=thirdparty%2FPython%2Fcpython.git Add missing backticks in os and decimal docs (#141699) --- diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 985153b5443f..ba882f10bbe2 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -264,7 +264,7 @@ allows the settings to be changed. This approach meets the needs of most applications. For more advanced work, it may be useful to create alternate contexts using the -Context() constructor. To make an alternate active, use the :func:`setcontext` +:meth:`Context` constructor. To make an alternate active, use the :func:`setcontext` function. In accordance with the standard, the :mod:`decimal` module provides two ready to diff --git a/Doc/library/os.rst b/Doc/library/os.rst index dbc3c92c8798..7dc6c177268e 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -558,7 +558,7 @@ process and user. .. function:: initgroups(username, gid, /) - Call the system initgroups() to initialize the group access list with all of + Call the system ``initgroups()`` to initialize the group access list with all of the groups of which the specified username is a member, plus the specified group id.