diff --git a/lib/koans/07_pattern_matching.ex b/lib/koans/07_pattern_matching.ex index 387635f..9156bd7 100644 --- a/lib/koans/07_pattern_matching.ex +++ b/lib/koans/07_pattern_matching.ex @@ -35,7 +35,7 @@ defmodule PatternMatching do assert third == ___ end - koan "Strings come apart just a easily" do + koan "Strings come apart just as easily" do "Shopping list: " <> items = "Shopping list: eggs, milk" assert items == ___ diff --git a/lib/koans/10_processes.ex b/lib/koans/10_processes.ex index d7e8728..321979b 100644 --- a/lib/koans/10_processes.ex +++ b/lib/koans/10_processes.ex @@ -44,7 +44,7 @@ defmodule Processes do assert Process.alive?(pid) == ___ end - koan "You can also terminate other processes than yourself" do + koan "You can also terminate processes other than yourself" do pid = spawn(fn -> receive do end end) assert Process.alive?(pid) == ___