diff --git a/src/koans/13_creating_functions.clj b/src/koans/13_creating_functions.clj index ff7203c..35910bd 100644 --- a/src/koans/13_creating_functions.clj +++ b/src/koans/13_creating_functions.clj @@ -15,7 +15,7 @@ "Partial functions allow procrastination" (= 20 (let [multiply-by-5 (partial * 5)] - (reduce multiply-by-5 2 '(2)))) + (multiply-by-5 4))) "Don't forget: first things first" (= [:a :b :c :d]