Fix some type

This commit is contained in:
Ria Cataquian
2016-05-08 04:16:06 +08:00
parent 97a60b095a
commit bb4959ddc0
3 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ defmodule PatternMatching do
assert a == ___
end
koan "A variable can be pinned to be prevent it from being rebound" do
koan "A variable can be pinned to prevent it from being rebounded" do
a = 1
assert_raise MatchError, fn() ->
^a = ___