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'
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.
Fib class.