From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 18 Nov 2025 10:37:49 +0000 (+0100) Subject: [3.14] Add missing backticks in os and decimal docs (GH-141699) (#141705) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3388413fc5a1331de64def824a660d1d0a941538;p=thirdparty%2FPython%2Fcpython.git [3.14] Add missing backticks in os and decimal docs (GH-141699) (#141705) Co-authored-by: Mariusz Felisiak --- diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 0b99a8324055..8d3223e89d96 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 4286e94ddb6c..1e109264d3dd 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -561,7 +561,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.