Fix comma placement

This commit is contained in:
Allan Reyes
2017-11-24 15:47:37 -08:00
parent 3fe255eb92
commit 054f425100

View File

@@ -37,7 +37,7 @@ defmodule MapSets do
assert MapSet.member?(@set, 3) == ___ assert MapSet.member?(@set, 3) == ___
end 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) new_set = MapSet.new(@set, fn x -> 3 * x end)
assert MapSet.member?(new_set, 15) == ___ assert MapSet.member?(new_set, 15) == ___