diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:56:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:56:09 (GMT) |
commit | 419e23cbb07a624609a219919eaecd3c61d8e9b4 (patch) | |
tree | 164360b1ac41a74ba86a16d8918770540d06c641 /PC | |
parent | 5dd99ebbc25ac0e182cb00ac4c67aef8d32a6755 (diff) | |
download | cpython-419e23cbb07a624609a219919eaecd3c61d8e9b4.zip cpython-419e23cbb07a624609a219919eaecd3c61d8e9b4.tar.gz cpython-419e23cbb07a624609a219919eaecd3c61d8e9b4.tar.bz2 |
#18466: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/_subprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/_subprocess.c b/PC/_subprocess.c index 689b0c8..195e343 100644 --- a/PC/_subprocess.c +++ b/PC/_subprocess.c @@ -331,7 +331,7 @@ getenvironment(PyObject* environment) PyObject* values; char* p; - /* convert environment dictionary to windows enviroment string */ + /* convert environment dictionary to windows environment string */ if (! PyMapping_Check(environment)) { PyErr_SetString( PyExc_TypeError, "environment must be dictionary or None"); |