From: Guido van Rossum Date: Tue, 12 Dec 2000 00:37:58 +0000 (+0000) Subject: Trivial typo fix, submitted by Charles Waldman (SF patch #102794). X-Git-Tag: v2.1a1~634 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f377d5732853d9e5d5c8da9ab1102de86b3fc0f1;p=python Trivial typo fix, submitted by Charles Waldman (SF patch #102794). --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 4a991f989d..470967448a 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)