From: Walter Dörwald Date: Thu, 18 Aug 2005 19:48:24 +0000 (+0000) Subject: Backport checkin: X-Git-Tag: v2.4.2c1~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9085870a624880b9861c63bbf1a5d5d18b885073;p=thirdparty%2FPython%2Fcpython.git Backport checkin: Fix typo (fixes SF bug #1263086). --- diff --git a/Doc/lib/libsimplexmlrpc.tex b/Doc/lib/libsimplexmlrpc.tex index ce7cd7a4f1fa..41e9e398dc4f 100644 --- a/Doc/lib/libsimplexmlrpc.tex +++ b/Doc/lib/libsimplexmlrpc.tex @@ -61,7 +61,7 @@ simple, stand alone XML-RPC servers. not been registered using \method{register_function()}. If \var{instance} contains a \method{_dispatch()} method, it is called with the requested method name and the parameters from the request. Its - API is \code{def \method{_dispatch}(self, method, params)} (note tha + API is \code{def \method{_dispatch}(self, method, params)} (note that \var{params} does not represent a variable argument list). If it calls an underlying function to perform its task, that function is called as \code{func(*params)}, expanding the parameter list.