diff options
author | Fred Drake <fdrake@acm.org> | 1999-10-18 14:10:06 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-10-18 14:10:06 (GMT) |
commit | 39d4a0237a921d93e879739042f1bcada1e92751 (patch) | |
tree | 82d7e18dfc0ee3695a7550f2fecfeffd22950725 /Doc/lib | |
parent | 14bb71d5535747be9b3a10ff1cf7be9e15001d90 (diff) | |
download | cpython-39d4a0237a921d93e879739042f1bcada1e92751.zip cpython-39d4a0237a921d93e879739042f1bcada1e92751.tar.gz cpython-39d4a0237a921d93e879739042f1bcada1e92751.tar.bz2 |
Fixed typo in explanation of abspath(); noticed by Paul Prescod
<paul@prescod.net>.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libposixpath.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index 50ea3bb..7ab3713 100644 --- a/Doc/lib/libposixpath.tex +++ b/Doc/lib/libposixpath.tex @@ -11,7 +11,7 @@ This module implements some useful functions on pathnames. \begin{funcdesc}{abspath}{path} Return a normalized absolutized version of the pathname \var{path}. On most platforms, this is equivalent to -\code{normpath(join(os.getcwd()), \var{path})}. +\code{normpath(join(os.getcwd(), \var{path}))}. \versionadded{1.5.2} \end{funcdesc} |