[Python-checkins] cpython: Fix typos

eric.araujo python-checkins at python.org
Sun Jun 24 19:54:29 CEST 2012


http://hg.python.org/cpython/rev/e75c01896a28
changeset:   77732:e75c01896a28
user:        Éric Araujo <merwok at netwok.org>
date:        Sun Jun 24 13:53:41 2012 -0400
summary:
  Fix typos

files:
  Doc/library/os.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1205,7 +1205,7 @@
 * For some functions, the *path* argument can be not only a string giving a path
   name, but also a file descriptor.  The function will then operate on the file
   referred to by the descriptor.  (For POSIX systems, this will use the ``f...``
-  versions of the function.)
+  version of the function.)
 
   You can check whether or not *path* can be specified as a file descriptor on
   your platform using :data:`os.supports_fd`.  If it is unavailable, using it
@@ -1220,7 +1220,7 @@
   should be a file descriptor referring to a directory, and the path to operate
   on should be relative; path will then be relative to that directory.  If the
   path is absolute, *dir_fd* is ignored.  (For POSIX systems, this will use the
-  ``f...at`` versions of the function.)
+  ``f...at`` version of the function.)
 
   You can check whether or not *dir_fd* is supported on your platform using
   :data:`os.supports_dir_fd`.  If it is unavailable, using it will raise a
@@ -1231,7 +1231,7 @@
 * For functions ith a *follow_symlinks* parameter: If *follow_symlinks* is
   ``False``, and the last element of the path to operate on is a symbolic link,
   the function will operate on the symbolic link itself instead of the file the
-  link points to.  (For POSIX systems, this will use the ``l...`` versions of
+  link points to.  (For POSIX systems, this will use the ``l...`` version of
   the function.)
 
   You can check whether or not *follow_symlinks* is supported on your platform

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list