diff --git a/src/koans/09_runtime_polymorphism.clj b/src/koans/09_runtime_polymorphism.clj index 300d52a..56d37c5 100644 --- a/src/koans/09_runtime_polymorphism.clj +++ b/src/koans/09_runtime_polymorphism.clj @@ -26,14 +26,14 @@ (= "Bambi eats veggies." (diet {:species "deer" :name "Bambi" :age 1 :eater :herbivore})) - "Different methods are used depending on the dispatch function result" - (= "Simba eats animals." - (diet {:species "lion" :name "Simba" :age 1 :eater :carnivore})) - "Animals have different names" (= "Thumper eats veggies." (diet {:species "rabbit" :name "Thumper" :age 1 :eater :herbivore})) + "Different methods are used depending on the dispatch function result" + (= "Simba eats animals." + (diet {:species "lion" :name "Simba" :age 1 :eater :carnivore})) + "You may use a default method when no others match" (= "I don't know what Rich Hickey eats." (diet {:name "Rich Hickey"})))