From 12ce3ba2d32d74be3ca61f101676a49465284ece Mon Sep 17 00:00:00 2001 From: Jay Hayes Date: Mon, 2 May 2016 12:17:09 -0500 Subject: [PATCH] Reword maps matching example --- lib/koans/07_pattern_matching.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/koans/07_pattern_matching.ex b/lib/koans/07_pattern_matching.ex index 1c68a04..a426668 100644 --- a/lib/koans/07_pattern_matching.ex +++ b/lib/koans/07_pattern_matching.ex @@ -49,7 +49,7 @@ defmodule PatternMatching do assert items == ___ end - koan "Patterns show what you really care about" do + koan "Maps support partial pattern matching" do %{make: make} = %{type: "car", year: 2016, make: "Honda", color: "black"} assert make == ___