]> granicus.if.org Git - python/commitdiff
Fix a small typo in the docstring for system_methodSignature .
authorBrett Cannon <bcannon@gmail.com>
Sun, 3 Oct 2004 23:21:44 +0000 (23:21 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sun, 3 Oct 2004 23:21:44 +0000 (23:21 +0000)
Closes bug #1038935.  Thanks Malte Helmert for spotting it.

Lib/SimpleXMLRPCServer.py

index fdde60c7ce46cc3408f32dc3040ba09021ddc1fa..68a20efb7ca932b1a1baba83742478ac83f1d979 100644 (file)
@@ -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.