summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-03-23 18:06:08 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-03-23 18:06:08 (GMT)
commit51f8d38185782385c08eaac50bdff1ea46a2f660 (patch)
tree094fcd6dc5aab209490b1711e428d62a9e525939 /Objects
parent7571a0fbcf6fd5d6014008f566f970c84cff7d95 (diff)
downloadcpython-51f8d38185782385c08eaac50bdff1ea46a2f660.zip
cpython-51f8d38185782385c08eaac50bdff1ea46a2f660.tar.gz
cpython-51f8d38185782385c08eaac50bdff1ea46a2f660.tar.bz2
Typo in comment.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 0a8d2f1..1a1d1d2 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -29,7 +29,7 @@ static PyObject refchain = {&refchain, &refchain};
* force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
* force should be true if and only if op points to freshly allocated,
* uninitialized memory, or you've unlinked op from the list and are
- * relinking it into the font.
+ * relinking it into the front.
* Note that objects are normally added to the list via _Py_NewReference,
* which is called by PyObject_Init. Not all objects are initialized that
* way, though; exceptions include statically allocated type objects, and