Skip to content

Commit

Permalink
Update clojure-in-15-minutes.md
Browse files Browse the repository at this point in the history
Typo

Signed-off-by: Jeff Allen <jra@nella.org>
  • Loading branch information
jeffallen authored and practicalli-johnny committed Jan 23, 2024
1 parent 064df06 commit 4e547cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/introduction/clojure-in-15-minutes.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Only lists are sequences
(seq? [1 2 3]) ; => false
```

Sequences are an interface for logical lists, which can be lazy. "Lazy" means that a sequence of valus are not evaluated until accessed.
Sequences are an interface for logical lists, which can be lazy. "Lazy" means that a sequence of values are not evaluated until accessed.

A lazy sequence enables the use of large or even an infinite series, like so:

Expand Down

0 comments on commit 4e547cf

Please sign in to comment.