From 040070bbed47738f5e7679cead46ca57870a4c7f Mon Sep 17 00:00:00 2001 From: neta-kedem Date: Mon, 2 Dec 2019 21:42:03 +0200 Subject: [PATCH] text styling "A multimethod takes one or more arguments" sound better than previous version --- src/koans/27_multimethods.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/koans/27_multimethods.clj b/src/koans/27_multimethods.clj index 2e4f12f..2c6e352 100644 --- a/src/koans/27_multimethods.clj +++ b/src/koans/27_multimethods.clj @@ -25,7 +25,7 @@ (defmethod multimethod-with-args :path-three [_]) (meditations - "A multimethod takes an one or more arguments to dispatch on" + "A multimethod takes one or more arguments to dispatch on" (= __ (multimethod-without-args :first)) @@ -41,4 +41,4 @@ "This allows us to something different in each method implementation" (= __ (multimethod-with-args :path-two {:first-opt 1 - :second-opt [0 1 2]}))) \ No newline at end of file + :second-opt [0 1 2]})))