Fixed typo in explanation of abspath(); noticed by Paul Prescod

<paul@prescod.net>.
This commit is contained in:
Fred Drake 1999-10-18 14:10:06 +00:00
parent 14bb71d553
commit 39d4a0237a
1 changed files with 1 additions and 1 deletions

View File

@ -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}