From: Victor Stinner Date: Thu, 13 Oct 2011 22:07:53 +0000 (+0200) Subject: Fix typo in the os doc: lremoveattr => lremovexattr X-Git-Tag: v3.3.0a1~1176 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69db2dbcbefbf8a67e8f24059ffb4c1fdb261ad2;p=python Fix typo in the os doc: lremoveattr => lremovexattr --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 919077589a..a07071fa25 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