diff options
author | Guido van Rossum <guido@python.org> | 2000-12-12 00:37:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-12-12 00:37:58 (GMT) |
commit | f377d5732853d9e5d5c8da9ab1102de86b3fc0f1 (patch) | |
tree | 031d1780cc38e99f96e742acbf42705529506785 | |
parent | dc90cc2b15dcf52d8ff6375619c8cb288c8e7baf (diff) | |
download | cpython-f377d5732853d9e5d5c8da9ab1102de86b3fc0f1.zip cpython-f377d5732853d9e5d5c8da9ab1102de86b3fc0f1.tar.gz cpython-f377d5732853d9e5d5c8da9ab1102de86b3fc0f1.tar.bz2 |
Trivial typo fix, submitted by Charles Waldman (SF patch #102794).
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 4a991f9..4709674 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2966,7 +2966,7 @@ posix_setgid(PyObject *self, PyObject *args) #ifdef HAVE_WAITPID static char posix_waitpid__doc__[] = "waitpid(pid, options) -> (pid, status)\n\ -Wait for completion of a give child process."; +Wait for completion of a given child process."; static PyObject * posix_waitpid(PyObject *self, PyObject *args) |