From 4e547cf67d156f72765f7444f001c5485bbbca4a Mon Sep 17 00:00:00 2001 From: Jeff Allen Date: Tue, 23 Jan 2024 11:09:18 +0100 Subject: [PATCH] Update clojure-in-15-minutes.md Typo Signed-off-by: Jeff Allen --- docs/introduction/clojure-in-15-minutes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/clojure-in-15-minutes.md b/docs/introduction/clojure-in-15-minutes.md index 8d13000fa..90362fe16 100644 --- a/docs/introduction/clojure-in-15-minutes.md +++ b/docs/introduction/clojure-in-15-minutes.md @@ -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: