]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#18399: fix comment typo.
authorR David Murray <rdmurray@bitdance.com>
Wed, 10 Jul 2013 14:57:39 +0000 (10:57 -0400)
committerR David Murray <rdmurray@bitdance.com>
Wed, 10 Jul 2013 14:57:39 +0000 (10:57 -0400)
Patch by Andrew Rowe.

Modules/python.c

index 2c08b9685687e0fe119cffe517fdee80d05adf6d..8a548d3ac33d18ead077e0c88e62e74f72aa027f 100644 (file)
@@ -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;