From a4b6fba11ac02fcbe509a08e495b223fec03102e Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Sat, 28 Mar 2009 16:46:33 -0500 Subject: [PATCH] more validation typos --- iterators-and-generators.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]