From f9268e81bfa94118f871cbe39197b19dcac4073e Mon Sep 17 00:00:00 2001 From: David Kinzer Date: Sun, 4 Aug 2013 00:59:37 +0000 Subject: [PATCH] Fix spelling. --- src/koans/20_partition.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/20_partition.clj b/src/koans/20_partition.clj index 9d3dcc6..5fd7758 100644 --- a/src/koans/20_partition.clj +++ b/src/koans/20_partition.clj @@ -5,7 +5,7 @@ "But watch out if there are not enough elements to form n sequences" (= '(__) (partition 3 [:a :b :c :d :e])) - "You can use partition-all to also get partitions with less then n elements" + "You can use partition-all to also get partitions with less than n elements" (= __ (partition-all 3 (range 5))) "If you need to, you can start each sequence with an offset"