From 84cd22710863fce8bf16f34ea07044ce7f55371e Mon Sep 17 00:00:00 2001 From: Jay Hayes Date: Sun, 19 Feb 2017 07:13:01 -0600 Subject: [PATCH] whitespace --- lib/koans/10_map_sets.ex | 2 +- test/koans/map_sets_koans_test.exs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/koans/10_map_sets.ex b/lib/koans/10_map_sets.ex index 133b5d8..9b5cd24 100644 --- a/lib/koans/10_map_sets.ex +++ b/lib/koans/10_map_sets.ex @@ -25,7 +25,7 @@ defmodule MapSets do koan "Does this value exist in the map set?" do assert MapSet.member?(@set, 3) == ___ end - + 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) diff --git a/test/koans/map_sets_koans_test.exs b/test/koans/map_sets_koans_test.exs index d98c8d5..a9bc885 100644 --- a/test/koans/map_sets_koans_test.exs +++ b/test/koans/map_sets_koans_test.exs @@ -4,13 +4,13 @@ defmodule MapSetsTest do test "MapSets" do answers = [ - 1, + 1, 3, :ok, true, {:multiple, [true, false]}, true, - false, + false, 5, false, true,