From: Brett Cannon Date: Sun, 3 Oct 2004 23:23:00 +0000 (+0000) Subject: Fix typo in docstring for system_methodSignature . X-Git-Tag: v2.3.5c1~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b255fc16192957aba8b3953926f26fc5cdf76da;p=thirdparty%2FPython%2Fcpython.git Fix typo in docstring for system_methodSignature . Backport of fix for bug #1038935 . --- diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py index 8ffa2441c061..892a61e27388 100644 --- a/Lib/SimpleXMLRPCServer.py +++ b/Lib/SimpleXMLRPCServer.py @@ -267,7 +267,7 @@ class SimpleXMLRPCDispatcher: def system_methodSignature(self, method_name): """system.methodSignature('add') => [double, int, int] - Returns a list describing the signiture of the method. In the + Returns a list describing the signature of the method. In the above example, the add method takes two integers as arguments and returns a double result.