From: R David Murray Date: Wed, 10 Jul 2013 14:57:39 +0000 (-0400) Subject: #18399: fix comment typo. X-Git-Tag: v3.4.0a1~268^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=296b73c83dd62173e104d4bf0c09b9b8f3a1b805;p=thirdparty%2FPython%2Fcpython.git #18399: fix comment typo. Patch by Andrew Rowe. --- diff --git a/Modules/python.c b/Modules/python.c index 2c08b9685687..8a548d3ac33d 100644 --- a/Modules/python.c +++ b/Modules/python.c @@ -19,7 +19,7 @@ int main(int argc, char **argv) { wchar_t **argv_copy = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*(argc+1)); - /* We need a second copies, as Python might modify the first one. */ + /* We need a second copy, as Python might modify the first one. */ wchar_t **argv_copy2 = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*(argc+1)); int i, res; char *oldloc;