diff --git a/iterators-and-generators.html b/iterators-and-generators.html index f075d9a..b847b25 100644 --- a/iterators-and-generators.html +++ b/iterators-and-generators.html @@ -509,7 +509,7 @@ rules = LazyRules()
Moving backwards… -
def __next__(self):
+ def __next__(self):
.
.
.
@@ -528,7 +528,7 @@ rules = LazyRules()
Moving backwards all the way to the start of the __next__() method…
-
def __next__(self):
+ def __next__(self):
self.cache_index += 1
if len(self.cache) >= self.cache_index:
return self.cache[self.cache_index - 1] ①