Skip to content

Commit 589daae

Browse files
committed
phrasing
1 parent 63e2b40 commit 589daae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_chapters/haskell1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ We can then create as much of the list as we need:
248248
take 10 lazyFibs
249249
[1,1,2,3,5,8,13,21,34,55]
250250
```
251-
This is only possible because Haskell's lazy evaluation only forces evaluation of the heads of the lists as necessary, e.g. to output the result of `take 10`.
251+
This works (as opposed to the recursive definition of `lazyFibs` causing an infinite loop) because Haskell's lazy evaluation only forces evaluation of the heads of the lists as necessary, e.g. to output the result of `take 10`.
252252
![Deck Observable Visualised](/assets/images/chapterImages/haskell1/zip.gif)
253253

254254
<div class="alert-box alert-info" markdown="1">

0 commit comments

Comments
 (0)