1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-17 12:10:52 +02:00

Merge pull request #641 from wobh/patch-1

Update elixir.html.markdown
This commit is contained in:
Nami-Doc
2014-06-07 16:54:13 +02:00

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