From 6b255fc16192957aba8b3953926f26fc5cdf76da Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 3 Oct 2004 23:23:00 +0000 Subject: [PATCH] Fix typo in docstring for system_methodSignature . Backport of fix for bug #1038935 . --- Lib/SimpleXMLRPCServer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.47.3