Fix a small typo in the docstring for system_methodSignature .

Closes bug #1038935.  Thanks Malte Helmert for spotting it.
This commit is contained in:
Brett Cannon 2004-10-03 23:21:44 +00:00
parent e7d4066cdf
commit b9b5f160ab

View file

@ -266,7 +266,7 @@ def system_listMethods(self):
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.