]> granicus.if.org Git - python/commitdiff
# Typo in docstring (Retrun -> Return).
authorGuido van Rossum <guido@python.org>
Tue, 23 Feb 1999 18:34:43 +0000 (18:34 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 23 Feb 1999 18:34:43 +0000 (18:34 +0000)
Modules/posixmodule.c

index a0b4f23b574a37c17431f0eeb216e10752ea339e..970d9518fdf9dd6ba75db3dfd41f68e5e54b65fa 100644 (file)
@@ -2884,7 +2884,7 @@ posix_WIFSTOPPED(self, args)
 #ifdef WIFSIGNALED
 static char posix_WIFSIGNALED__doc__[] =
 "WIFSIGNALED(status) -> Boolean\n\
-Retrun true if the process returning 'status' was terminated by a signal.";
+Return true if the process returning 'status' was terminated by a signal.";
 
 static PyObject *
 posix_WIFSIGNALED(self, args)