diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-13 22:07:53 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-13 22:07:53 (GMT) |
commit | 69db2dbcbefbf8a67e8f24059ffb4c1fdb261ad2 (patch) | |
tree | a12d2387c27926b93a7578e90243a6288779de33 /Doc/library/os.rst | |
parent | 9d663d07882d4a195f6cfb93c17f79512b45d4a2 (diff) | |
download | cpython-69db2dbcbefbf8a67e8f24059ffb4c1fdb261ad2.zip cpython-69db2dbcbefbf8a67e8f24059ffb4c1fdb261ad2.tar.gz cpython-69db2dbcbefbf8a67e8f24059ffb4c1fdb261ad2.tar.bz2 |
Fix typo in the os doc: lremoveattr => lremovexattr
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 9190775..a07071f 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1658,9 +1658,9 @@ Files and Directories .. versionadded:: 3.3 -.. function:: lremoveattr(path, attr) +.. function:: lremovexattr(path, attr) - This works exactly like :func:`removeattr` but doesn't follow symlinks. + This works exactly like :func:`removexattr` but doesn't follow symlinks. Availability: Linux |