]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in docstring for system_methodSignature .
authorBrett Cannon <bcannon@gmail.com>
Sun, 3 Oct 2004 23:23:00 +0000 (23:23 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sun, 3 Oct 2004 23:23:00 +0000 (23:23 +0000)
Backport of fix for bug #1038935 .

Lib/SimpleXMLRPCServer.py

index 8ffa2441c0617cc5d41b5a6a62722bc1fbf6c1be..892a61e273880b56a7c208e1c6a49f645220f751 100644 (file)
@@ -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.