summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-11-07 06:28:47 (GMT)
committerFred Drake <fdrake@acm.org>2001-11-07 06:28:47 (GMT)
commit0b663104760b6d32bb6dfb49ef45194de6c05a66 (patch)
treec578ea179945903c1bad95e604ed6e310025ea36 /Doc/lib
parent59bfe280f5c7afef55205baa3b46fdaf659bd932 (diff)
downloadcpython-0b663104760b6d32bb6dfb49ef45194de6c05a66.zip
cpython-0b663104760b6d32bb6dfb49ef45194de6c05a66.tar.gz
cpython-0b663104760b6d32bb6dfb49ef45194de6c05a66.tar.bz2
When referring to a formal parameter from the description, use the name given
with the signature, not an ad hoc abbreviated form.
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libfuncs.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index 70d7cdb..0ae7e5f 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -72,7 +72,7 @@ def my_import(name):
dictionary whose keys are strings. It specifies keyword arguments
to be added to the end of the the argument list.
Calling \function{apply()} is different from just calling
- \code{\var{func}(\var{args})}, since in that case there is always
+ \code{\var{function}(\var{args})}, since in that case there is always
exactly one argument. The use of \function{apply()} is equivalent
to \code{\var{function}(*\var{args}, **\var{keywords})}.
\end{funcdesc}