From 567031f48ebd8f5d5ea485ba452f24622ff47cea Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Sat, 26 Jan 2013 19:28:46 -0800 Subject: [PATCH] Correct 'is' to 'are' in koan description. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I don't mean to be That Guy, but it's more correct to use 'are', rather than 'is' when discussing a plural subject.  --- src/koans/10_lazy_sequences.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/10_lazy_sequences.clj b/src/koans/10_lazy_sequences.clj index d7b52ec..3a88a53 100644 --- a/src/koans/10_lazy_sequences.clj +++ b/src/koans/10_lazy_sequences.clj @@ -1,5 +1,5 @@ (meditations - "There is a wide range of ways to generate a sequence" + "There are a wide range of ways to generate a sequence" (= __ (range 1 5)) "The range starts at the beginning by default"