Update elixir.html.markdown

minor spelling fix: `s/catched/caught/`
This commit is contained in:
William Clifford 2014-06-07 07:45:57 -07:00
parent d9e5677d1a
commit 506ffb7a68

View File

@ -201,7 +201,7 @@ cond do
end
# `try/catch` is used to catch values that are thrown, it also supports an
# `after` clause that is invoked whether or not a value is catched.
# `after` clause that is invoked whether or not a value is caught.
try do
throw(:hello)
catch