diff --git a/iterators.html b/iterators.html
old mode 100644
new mode 100755
index 94e8635..fb4e56f
--- a/iterators.html
+++ b/iterators.html
@@ -164,7 +164,8 @@ body{counter-reset:h1 6}
self.max = max
def __iter__(self): ③
- self.a, self.b = 0, 1
+ self.a = 0
+ self.b = 1
return self
def __next__(self): ④