summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-02-23 18:34:43 (GMT)
committerGuido van Rossum <guido@python.org>1999-02-23 18:34:43 (GMT)
commit3366d1c7e613da33f95f49bc52dfbbe67a08cf4e (patch)
tree51a19359d0930f0bc95bebd9b0234f91fe51ae99 /Modules/posixmodule.c
parent79e8f1b77366019b80205fa89322245d67076d2c (diff)
downloadcpython-3366d1c7e613da33f95f49bc52dfbbe67a08cf4e.zip
cpython-3366d1c7e613da33f95f49bc52dfbbe67a08cf4e.tar.gz
cpython-3366d1c7e613da33f95f49bc52dfbbe67a08cf4e.tar.bz2
# Typo in docstring (Retrun -> Return).
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index a0b4f23..970d951 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -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)