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)))