Fix minor typo in a comment

This commit is contained in:
Raymond Hettinger 2015-07-31 12:03:20 -07:00
parent 9591bf11d1
commit 12f896c521
1 changed files with 1 additions and 1 deletions

View File

@ -1047,7 +1047,7 @@ deque_clear(dequeobject *deque)
static int
valid_index(Py_ssize_t i, Py_ssize_t limit)
{
/* The cast to size_t let us use just a single comparison
/* The cast to size_t lets us use just a single comparison
to check whether i is in the range: 0 <= i < limit */
return (size_t) i < (size_t) limit;
}