summaryrefslogtreecommitdiffstats
path: root/Objects/dictobject.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-10 18:58:31 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-05-10 18:58:31 (GMT)
commit3918fb2549715723caaf42be1c4a3a3ed4e05dfb (patch)
tree6dcb8ea2e4df2e98ced067de41b1a23bad7fc25a /Objects/dictobject.c
parente61967f53798c46d07419dd128efc15c14119660 (diff)
downloadcpython-3918fb2549715723caaf42be1c4a3a3ed4e05dfb.zip
cpython-3918fb2549715723caaf42be1c4a3a3ed4e05dfb.tar.gz
cpython-3918fb2549715723caaf42be1c4a3a3ed4e05dfb.tar.bz2
Repair typo in comment.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 3f77427..b699153 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1077,7 +1077,7 @@ dict_compare(dictobject *a, dictobject *b)
adiff = characterize(a, b, &aval);
if (adiff == NULL) {
assert(!aval);
- /* Either an error, or a is a subst with the same length so
+ /* Either an error, or a is a subset with the same length so
* must be equal.
*/
res = PyErr_Occurred() ? -1 : 0;