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.