Skip to content

Commit e7afdb5

Browse files
committed
Corrected fibonacci results in example
1 parent 49e3f59 commit e7afdb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overviews/collections/concrete-immutable-collection-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Here are the first few elements of the Fibonacci sequence starting with two ones
4242
scala> val fibs = fibFrom(1, 1).take(7)
4343
fibs: scala.collection.immutable.Stream[Int] = Stream(1, ?)
4444
scala> fibs.toList
45-
res9: List[Int] = List(1, 1, 2, 3, 5, 8, 11)
45+
res9: List[Int] = List(1, 1, 2, 3, 5, 8, 13)
4646

4747
## Vectors
4848

0 commit comments

Comments
 (0)