summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorWilliam Clifford <wobh@yahoo.com>2014-06-07 07:45:57 -0700
committerWilliam Clifford <wobh@yahoo.com>2014-06-07 07:45:57 -0700
commit506ffb7a683d136c550278efa184a51af0e5b5e7 (patch)
tree7db0022d7804fb765ff84a98baecf2f43ff3024a
parentd9e5677d1a820021bd486040a8beeb9942f46603 (diff)
Update elixir.html.markdown
minor spelling fix: `s/catched/caught/`
-rw-r--r--elixir.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/elixir.html.markdown b/elixir.html.markdown
index b27b2ee8..946c0a1b 100644
--- a/elixir.html.markdown
+++ b/elixir.html.markdown
@@ -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