Skip to content

Commit 37b8d4a

Browse files
committed
update README.md
1 parent edb9ee6 commit 37b8d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ func SequenceDemo() {
109109
}
110110
}
111111

112-
// this will print first 5 Fibonacci numbers: 1 1 2 3 5
113-
for v := range goiter.Sequence(genFib(5)) {
112+
// this will print first 5 Fibonacci numbers: 1 1 2 3 5 8 13 21 34 55
113+
for v := range goiter.Sequence(genFib(10)) {
114114
fmt.Printf("%d ", v)
115115
}
116116
}

0 commit comments

Comments
 (0)