summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-10-07 01:01:30 (GMT)
committerGitHub <noreply@github.com>2022-10-07 01:01:30 (GMT)
commitfa2d43e5184f5eaf3391844ec2400342a1b2ead4 (patch)
treefaa2f2ae684d96fd9bd81e5bc28a99bf96274254 /Doc/library/os.rst
parent27025e158c70331d0a8fb42fe234a2a6770850d1 (diff)
downloadcpython-fa2d43e5184f5eaf3391844ec2400342a1b2ead4.zip
cpython-fa2d43e5184f5eaf3391844ec2400342a1b2ead4.tar.gz
cpython-fa2d43e5184f5eaf3391844ec2400342a1b2ead4.tar.bz2
Docs: Fix backtick errors found by sphinx-lint (#97998)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index cb06dc6..23b014b 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3194,7 +3194,7 @@ features:
system records access and modification times; see :func:`~os.stat`. The best
way to preserve exact times is to use the *st_atime_ns* and *st_mtime_ns*
fields from the :func:`os.stat` result object with the *ns* parameter to
- `utime`.
+ :func:`utime`.
This function can support :ref:`specifying a file descriptor <path_fd>`,
:ref:`paths relative to directory descriptors <dir_fd>` and :ref:`not
@@ -4094,7 +4094,7 @@ written in Python, such as a mail server's external command delivery program.
library :c:data:`POSIX_SPAWN_RESETIDS` flag.
If the *setsid* argument is ``True``, it will create a new session ID
- for `posix_spawn`. *setsid* requires :c:data:`POSIX_SPAWN_SETSID`
+ for ``posix_spawn``. *setsid* requires :c:data:`POSIX_SPAWN_SETSID`
or :c:data:`POSIX_SPAWN_SETSID_NP` flag. Otherwise, :exc:`NotImplementedError`
is raised.