more validation typos

This commit is contained in:
Mark Pilgrim
2009-03-28 16:46:33 -05:00
parent da654d2ba0
commit a4b6fba11a
+2 -2
View File
@@ -509,7 +509,7 @@ rules = LazyRules()</code></pre>
<p>Moving backwards&hellip;
<pre><code><a> def __next__(self):
<pre><code> def __next__(self):
.
.
.
@@ -528,7 +528,7 @@ rules = LazyRules()</code></pre>
<p>Moving backwards all the way to the start of the <code>__next__()</code> method&hellip;
<pre><code><a> def __next__(self):
<pre><code> def __next__(self):
self.cache_index += 1
if len(self.cache) >= self.cache_index:
<a> return self.cache[self.cache_index - 1] <span>&#x2460;</span></a>