summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-10-01 01:35:54 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-10-01 01:35:54 (GMT)
commitd6e0032768effca9e33cb6db9ce47e785541590f (patch)
tree53c92e824ab957134f7884510799fb1a2c6f46fe /Modules
parentd8768d3294c787d9bea7b5ddc47c95238ef7fdf1 (diff)
downloadcpython-d6e0032768effca9e33cb6db9ce47e785541590f.zip
cpython-d6e0032768effca9e33cb6db9ce47e785541590f.tar.gz
cpython-d6e0032768effca9e33cb6db9ce47e785541590f.tar.bz2
Typos in new comments.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/collectionsmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c
index 03e09c9..f8a6f61 100644
--- a/Modules/collectionsmodule.c
+++ b/Modules/collectionsmodule.c
@@ -14,13 +14,13 @@
* and the rightmost block has rightlink==NULL). A deque d's first
* element is at d.leftblock[leftindex] and its last element is at
* d.rightblock[rightindex]; note that, unlike as for Python slice
- * indices, this indices are inclusive on both ends.
+ * indices, these indices are inclusive on both ends.
* The list of blocks is never empty. An empty deque d has
* d.leftblock == d.rightblock != NULL; d.len == 0; and
* d.leftindex > d.rightindex; checking for d.len == 0 is the intended
* way to see whether d is empty.
* Note that since d.leftindex and d.rightindex may be indices into
- * distinct blocks (and certainly are, for and d with len(d) > BLOCKLEN),
+ * distinct blocks (and certainly are, for any d with len(d) > BLOCKLEN),
* it's not generally true that d.leftindex <= d.rightindex.
*/