diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-03-20 14:42:01 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-03-20 14:42:01 (GMT) |
commit | a22ae21db6a7e9f1833c73dc91fb621b86be6146 (patch) | |
tree | d3bec555bf808317a7f23bf3975763ca18e2c058 /Doc | |
parent | d852e997f4117f30b62874cdbfc28e93ee3804c4 (diff) | |
download | cpython-a22ae21db6a7e9f1833c73dc91fb621b86be6146.zip cpython-a22ae21db6a7e9f1833c73dc91fb621b86be6146.tar.gz cpython-a22ae21db6a7e9f1833c73dc91fb621b86be6146.tar.bz2 |
Fix parameter name in docs for os.makedirs and os.removedirs.
Pointed out by Colin Davis on docs@.
Diffstat (limited to 'Doc')
-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 f50e5d9..8e19c25 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1607,7 +1607,7 @@ features: The *dir_fd* argument. -.. function:: makedirs(path, mode=0o777, exist_ok=False) +.. function:: makedirs(name, mode=0o777, exist_ok=False) .. index:: single: directory; creating @@ -1763,7 +1763,7 @@ features: The *dir_fd* argument. -.. function:: removedirs(path) +.. function:: removedirs(name) .. index:: single: directory; deleting |