summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.path.rst
diff options
context:
space:
mode:
authorWill Hawkins <8715530+hawkinsw@users.noreply.github.com>2022-10-01 23:41:06 (GMT)
committerGitHub <noreply@github.com>2022-10-01 23:41:06 (GMT)
commitbd7d0e875e6955dd69cde18a034e59a75b8b4d00 (patch)
treeed258540b7b5cd3a14f51abf8c4ccfedf81f157a /Doc/library/os.path.rst
parentf00645d5dbf4cfa0b8f382c8977724578dff191d (diff)
downloadcpython-bd7d0e875e6955dd69cde18a034e59a75b8b4d00.zip
cpython-bd7d0e875e6955dd69cde18a034e59a75b8b4d00.tar.gz
cpython-bd7d0e875e6955dd69cde18a034e59a75b8b4d00.tar.bz2
Fix capitalization of Unix in documentation (#96913)
Diffstat (limited to 'Doc/library/os.path.rst')
-rw-r--r--Doc/library/os.path.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index 7c35f3c..6d52a03 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -16,7 +16,7 @@ files see :func:`open`, and for accessing the filesystem see the :mod:`os`
module. The path parameters can be passed as strings, or bytes, or any object
implementing the :class:`os.PathLike` protocol.
-Unlike a unix shell, Python does not do any *automatic* path expansions.
+Unlike a Unix shell, Python does not do any *automatic* path expansions.
Functions such as :func:`expanduser` and :func:`expandvars` can be invoked
explicitly when an application desires shell-like path expansion. (See also
the :mod:`glob` module.)