From: Fred Drake Date: Mon, 18 Oct 1999 14:10:06 +0000 (+0000) Subject: Fixed typo in explanation of abspath(); noticed by Paul Prescod X-Git-Tag: v1.6a1~820 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39d4a0237a921d93e879739042f1bcada1e92751;p=python Fixed typo in explanation of abspath(); noticed by Paul Prescod . --- diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index 50ea3bb72f..7ab3713ba4 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}