From a9c22921a5a3fb0c7fc09d9bd57c61b308b1a803 Mon Sep 17 00:00:00 2001 From: Nick Reilingh Date: Tue, 7 Jul 2020 21:10:56 -0400 Subject: [PATCH] 27_multimethods.clj - fixed typo? The word "do" seems to be missing in the final koan. --- src/koans/27_multimethods.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/27_multimethods.clj b/src/koans/27_multimethods.clj index 2c6e352..22152fb 100644 --- a/src/koans/27_multimethods.clj +++ b/src/koans/27_multimethods.clj @@ -38,7 +38,7 @@ (multimethod-with-args :path-one {:first-opt 1 :second-opt 2})) - "This allows us to something different in each method implementation" + "This allows us to do something different in each method implementation" (= __ (multimethod-with-args :path-two {:first-opt 1 :second-opt [0 1 2]})))