From 296b73c83dd62173e104d4bf0c09b9b8f3a1b805 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Wed, 10 Jul 2013 10:57:39 -0400 Subject: #18399: fix comment typo. Patch by Andrew Rowe. --- Modules/python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/python.c') diff --git a/Modules/python.c b/Modules/python.c index 2c08b96856..8a548d3ac3 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; -- cgit v1.2.1