fixes typos and some formatting

This commit is contained in:
Rabea Gleissner
2016-04-22 15:04:59 +01:00
parent 52ac7955e5
commit ee084b4563
8 changed files with 11 additions and 12 deletions

View File

@@ -16,7 +16,7 @@ defmodule Enums do
end
def even?(n), do: rem(n, 2) == 0
koan "Sometimes you you just want to know if there are any elements fullfilling a condition" do
koan "Sometimes you just want to know if there are any elements fulfilling a condition" do
assert Enum.any?([1,2,3], &even?/1) == ___
assert Enum.any?([1,3,5], &even?/1) == ___
end