From f0bdefe9720b707def87ead75e0dbe311fd0da9b Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Wed, 24 Jul 2013 19:39:17 -0500 Subject: [PATCH] Improve grammatical flow refs #51 --- src/koans/13_recursion.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/13_recursion.clj b/src/koans/13_recursion.clj index 53a9265..2d9eb42 100644 --- a/src/koans/13_recursion.clj +++ b/src/koans/13_recursion.clj @@ -29,7 +29,7 @@ "Reversing directions is easy when you have not gone far" (= '(1) (recursive-reverse [1])) - "Yet more difficult the more steps you take" + "Yet it becomes more difficult the more steps you take" (= '(5 4 3 2 1) (recursive-reverse [1 2 3 4 5])) "Simple things may appear simple."