From 3ddfa8c2415274f06752545135699775c2747b00 Mon Sep 17 00:00:00 2001 From: Ivan Bilous Date: Sat, 17 Sep 2022 17:39:01 +0300 Subject: [PATCH] Fix grammar --- src/koans/12_sequence_comprehensions.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/12_sequence_comprehensions.clj b/src/koans/12_sequence_comprehensions.clj index f131e1a..d417687 100644 --- a/src/koans/12_sequence_comprehensions.clj +++ b/src/koans/12_sequence_comprehensions.clj @@ -20,7 +20,7 @@ (for [x __ :when (odd? x)] x)) - "Combinations of these transformations is trivial" + "Combinations of these transformations are trivial" (= '(1 9 25 49 81) (map (fn [x] (* x x)) (filter odd? (range 10)))