From 0b663104760b6d32bb6dfb49ef45194de6c05a66 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 7 Nov 2001 06:28:47 +0000 Subject: [PATCH] When referring to a formal parameter from the description, use the name given with the signature, not an ad hoc abbreviated form. --- Doc/lib/libfuncs.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 70d7cdbf73e..0ae7e5f12eb 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}