From f4a5cd7cadd4ce11c9a1103ab18770e5c08cdb78 Mon Sep 17 00:00:00 2001 From: Michael Kohl Date: Mon, 3 Jan 2011 23:12:39 +0100 Subject: [PATCH] Spelling --- src/koans/creating_functions.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/koans/creating_functions.clj b/src/koans/creating_functions.clj index a3b38b2..b6b143c 100644 --- a/src/koans/creating_functions.clj +++ b/src/koans/creating_functions.clj @@ -20,7 +20,7 @@ (let [ab-adder (partial concat [:a :b])] (ab-adder [__ __]))) - "Functions can joins forces as one 'composed' function" + "Functions can join forces as one 'composed' function" (= 25 (let [inc-and-square (comp square inc)] (inc-and-square __))) @@ -28,7 +28,7 @@ (= __ (let [double-dec (comp dec dec)] (double-dec 10))) - "Be careful the order in which you mix your functions" + "Be careful about the order in which you mix your functions" (= 99 (let [square-and-dec ___] (square-and-dec 10))))