From 5f416f80ec20ab17526935a2a16f93e3d77bde30 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Tue, 5 Jan 2010 10:26:30 -0500 Subject: [PATCH] typo [thanks K.R.] --- iterators.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iterators.html b/iterators.html index ccd9942..0c89a57 100755 --- a/iterators.html +++ b/iterators.html @@ -312,7 +312,7 @@ rules = LazyRules()
  1. The __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.
  2. The last part of this function should look familiar, at least. The build_match_and_apply_functions() function hasn’t changed; it’s the same as it ever was. -
  3. The only difference is that, before returning the match and apply functions (which are stored in the tuple funcs), we’ve going to save them in self.cache. +
  4. The only difference is that, before returning the match and apply functions (which are stored in the tuple funcs), we’re going to save them in self.cache.

Moving backwards…