Skip to content

Commit f3239b8

Browse files
authored
Fix a minor typo (#84)
1 parent 646c3d1 commit f3239b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

markdown/source_md/starting-out.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ For now, let's examine how you would get the first 24 multiples of 13.
592592
Sure, you could do `[13,26..24*13]`.
593593
But there's a better way: `take 24 [13,26..]`.
594594
Because Haskell is lazy, it won't try to evaluate the infinite list immediately because it would never finish.
595-
It'll wait to see what you want to get out of that infinite lists.
595+
It'll wait to see what you want to get out of that infinite list.
596596
And here it sees you just want the first 24 elements and it gladly obliges.
597597

598598
A handful of functions that produce infinite lists:

0 commit comments

Comments
 (0)