# Typo in docstring (Retrun -> Return).

This commit is contained in:
Guido van Rossum 1999-02-23 18:34:43 +00:00
parent 79e8f1b773
commit 3366d1c7e6

View file

@ -2884,7 +2884,7 @@ posix_WIFSTOPPED(self, args)
#ifdef WIFSIGNALED #ifdef WIFSIGNALED
static char posix_WIFSIGNALED__doc__[] = static char posix_WIFSIGNALED__doc__[] =
"WIFSIGNALED(status) -> Boolean\n\ "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 * static PyObject *
posix_WIFSIGNALED(self, args) posix_WIFSIGNALED(self, args)