[Python-checkins] cpython: Fix typo in the os doc: lremoveattr => lremovexattr

victor.stinner python-checkins at python.org
Fri Oct 14 00:09:29 CEST 2011


http://hg.python.org/cpython/rev/d82a5daa77cf
changeset:   72916:d82a5daa77cf
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Fri Oct 14 00:07:53 2011 +0200
summary:
  Fix typo in the os doc: lremoveattr => lremovexattr

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
@@ -1658,9 +1658,9 @@
    .. versionadded:: 3.3
 
 
-.. function:: lremoveattr(path, attr)
-
-   This works exactly like :func:`removeattr` but doesn't follow symlinks.
+.. function:: lremovexattr(path, attr)
+
+   This works exactly like :func:`removexattr` but doesn't follow symlinks.
 
    Availability: Linux
 

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


More information about the Python-checkins mailing list