From 4c74b1b50bef27f339fc6ba5e7bcc48a7439075d Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Wed, 17 Nov 2010 09:55:16 -0600 Subject: [PATCH] Add Micah to the contributor list & fix a couple typos. --- README.md | 1 + src/koans/creating_functions.clj | 8 +++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e65fe3c..a0d10b7 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ omissions for existing koans. - Colin Jones - Eric Lavigne - Nuno Marquez +- Micah Martin ### Credits diff --git a/src/koans/creating_functions.clj b/src/koans/creating_functions.clj index 926c0d9..a3b38b2 100644 --- a/src/koans/creating_functions.clj +++ b/src/koans/creating_functions.clj @@ -24,13 +24,11 @@ (= 25 (let [inc-and-square (comp square inc)] (inc-and-square __))) - "Have a go on a tripple dec-er" + "Have a go on a double dec-er" (= __ (let [double-dec (comp dec dec)] (double-dec 10))) - "Becareful the order in which you mix your functions" + "Be careful the order in which you mix your functions" (= 99 (let [square-and-dec ___] - (square-and-dec 10))) - ) - + (square-and-dec 10))))