Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0a8f5f7

Browse files
committed
Fix typos
1 parent aa789ac commit 0a8f5f7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/library/os.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ features:
12051205
* For some functions, the *path* argument can be not only a string giving a path
12061206
name, but also a file descriptor. The function will then operate on the file
12071207
referred to by the descriptor. (For POSIX systems, this will use the ``f...``
1208-
versions of the function.)
1208+
version of the function.)
12091209

12101210
You can check whether or not *path* can be specified as a file descriptor on
12111211
your platform using :data:`os.supports_fd`. If it is unavailable, using it
@@ -1220,7 +1220,7 @@ features:
12201220
should be a file descriptor referring to a directory, and the path to operate
12211221
on should be relative; path will then be relative to that directory. If the
12221222
path is absolute, *dir_fd* is ignored. (For POSIX systems, this will use the
1223-
``f...at`` versions of the function.)
1223+
``f...at`` version of the function.)
12241224

12251225
You can check whether or not *dir_fd* is supported on your platform using
12261226
:data:`os.supports_dir_fd`. If it is unavailable, using it will raise a
@@ -1231,7 +1231,7 @@ features:
12311231
* For functions ith a *follow_symlinks* parameter: If *follow_symlinks* is
12321232
``False``, and the last element of the path to operate on is a symbolic link,
12331233
the function will operate on the symbolic link itself instead of the file the
1234-
link points to. (For POSIX systems, this will use the ``l...`` versions of
1234+
link points to. (For POSIX systems, this will use the ``l...`` version of
12351235
the function.)
12361236

12371237
You can check whether or not *follow_symlinks* is supported on your platform

0 commit comments

Comments
 (0)