From: Brett Cannon Date: Sun, 3 Oct 2004 23:21:44 +0000 (+0000) Subject: Fix a small typo in the docstring for system_methodSignature . X-Git-Tag: v2.4b1~91 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9b5f160ab7c17469c5ff297292275253e4f7570;p=thirdparty%2FPython%2Fcpython.git Fix a small typo in the docstring for system_methodSignature . Closes bug #1038935. Thanks Malte Helmert for spotting it. --- diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py index fdde60c7ce46..68a20efb7ca9 100644 --- a/Lib/SimpleXMLRPCServer.py +++ b/Lib/SimpleXMLRPCServer.py @@ -266,7 +266,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.