diff --git a/lib/koans/09_map_sets.ex b/lib/koans/09_map_sets.ex index 5392985..b40cca5 100644 --- a/lib/koans/09_map_sets.ex +++ b/lib/koans/09_map_sets.ex @@ -37,7 +37,7 @@ defmodule MapSets do assert MapSet.member?(@set, 3) == ___ end - koan "I am merely another collection but, you can perform some operations on me" do + koan "I am merely another collection, but you can perform some operations on me" do new_set = MapSet.new(@set, fn x -> 3 * x end) assert MapSet.member?(new_set, 15) == ___