summaryrefslogtreecommitdiffstats
path: root/Objects/codeobject.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 (GMT)
commit6a8163a928f9ff04242580c09216431ddd39cdbc (patch)
treef488fcfc631d8663003cd5784bba970d3e6438f9 /Objects/codeobject.c
parent8feff8f1ddf870f4a68facf7127097cec97ebc39 (diff)
downloadcpython-6a8163a928f9ff04242580c09216431ddd39cdbc.zip
cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.tar.gz
cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.tar.bz2
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
This affects documentation and code comments.
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r--Objects/codeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
index 7e74607..c104098 100644
--- a/Objects/codeobject.c
+++ b/Objects/codeobject.c
@@ -492,7 +492,7 @@ _PyCode_ConstantKey(PyObject *op)
return key;
}
else {
- /* for other types, use the object identifier as an unique identifier
+ /* for other types, use the object identifier as a unique identifier
* to ensure that they are seen as unequal. */
PyObject *obj_id = PyLong_FromVoidPtr(op);
if (obj_id == NULL)