Typo correction

This commit is contained in:
Michael Snoyman 2017-12-19 16:39:01 +02:00
parent 0c174c5466
commit 9b4f48a8c4
No known key found for this signature in database
GPG key ID: A048E8C057E86876

View file

@ -682,7 +682,7 @@ sum [1..1000000]
We use list range syntax to create a list with one million numbers in
it. On its face, this looks terrible: we need to allocate about 8mb of
data to hold onto this integers, when this should run in constant
data to hold onto these integers, when this should run in constant
space. But this is exactly where laziness kicks in: instead of
allocating all of these values immediately, we allocate a thunk. Each
time we step through the list, our thunk generates one new integer and