diff --git a/iterators.html b/iterators.html index 8ae17c1..622e0bd 100755 --- a/iterators.html +++ b/iterators.html @@ -314,8 +314,8 @@ rules = LazyRules() return funcs
__next__() method gets called whenever someone — say, a for loop — calls next(rules). This method will only make sense if we start at the end and work backwards. So let’s do that.
-build_match_and_apply_functions() function hasn’t changed; it’s the same as it ever was. Each line of the pattern file will be read exactly once, as late as possible.
-self.cache. Each match and apply function will be built exactly once, as late as possible, then cached.
+build_match_and_apply_functions() function hasn’t changed; it’s the same as it ever was.
+self.cache.
Moving backwards…