Skip to content

Commit 7221272

Browse files
talestoniniulysses4ever
authored andcommitted
Minor English fix
1 parent 122b1a1 commit 7221272

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source_md/starting-out.md

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

601601
A handful of functions that produce infinite lists:

0 commit comments

Comments
 (0)