summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-03-21 17:35:06 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-03-21 17:35:06 (GMT)
commit8183fa46a9b81b74b63fb5b0e98d632b060f8eab (patch)
tree44b1fb7c7f9b5bf1104e5f7ed854b6fbd2581aec /Objects/object.c
parent660252047347d1effbe00162ff990fc7a57d4d2a (diff)
downloadcpython-8183fa46a9b81b74b63fb5b0e98d632b060f8eab.zip
cpython-8183fa46a9b81b74b63fb5b0e98d632b060f8eab.tar.gz
cpython-8183fa46a9b81b74b63fb5b0e98d632b060f8eab.tar.bz2
Fix typo in comment.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index bda27e0..ba9a1d9 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -895,7 +895,7 @@ PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
}
/* Set of hash utility functions to help maintaining the invariant that
- iff a==b then hash(a)==hash(b)
+ if a==b then hash(a)==hash(b)
All the utility functions (_Py_Hash*()) return "-1" to signify an error.
*/