From 49d628aba2f9a290b9ec6f0de27c11f1a0f6f790 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Sat, 16 May 2009 01:12:45 -0400 Subject: [PATCH] validation fiddling --- iterators.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iterators.html b/iterators.html index 2810adc..3346bd0 100644 --- a/iterators.html +++ b/iterators.html @@ -97,7 +97,7 @@ class Fib: >>> fib.__class__ <class 'fibonacci2.Fib'> >>> fib.__doc__ -'iterator that yields numbers in the Fibanocci sequence' +'iterator that yields numbers in the Fibanocci sequence'
  1. You are creating an instance of the Fib class (defined in the fibonacci2 module) and assigning the newly created instance to the variable fib. You are passing one parameter, 100, which will end up as the max argument in Fib’s __init__() method.
  2. fib is now an instance of the Fib class.