diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-15 02:14:19 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-15 02:14:19 (GMT) |
commit | 6a8163a928f9ff04242580c09216431ddd39cdbc (patch) | |
tree | f488fcfc631d8663003cd5784bba970d3e6438f9 /Objects/codeobject.c | |
parent | 8feff8f1ddf870f4a68facf7127097cec97ebc39 (diff) | |
download | cpython-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.c | 2 |
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) |