summaryrefslogtreecommitdiffhomepage
path: root/elixir.html.markdown
diff options
context:
space:
mode:
authorNikhil Thomas <nikhil@redowlanalytics.com>2014-09-18 13:41:47 -0400
committerNikhil Thomas <nikhil@redowlanalytics.com>2014-09-18 13:41:47 -0400
commit27c7f4c4f039d07fc32e5b67493fdfe9c92a9e9d (patch)
tree1474b0b44ed2dfd8c16ab3695f6821c70b16b997 /elixir.html.markdown
parent82b5e67c20c11be419c580e64d0e27a5fe7d32ea (diff)
fix typo
Diffstat (limited to 'elixir.html.markdown')
-rw-r--r--elixir.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/elixir.html.markdown b/elixir.html.markdown
index 946c0a1b..c0abc815 100644
--- a/elixir.html.markdown
+++ b/elixir.html.markdown
@@ -360,7 +360,7 @@ spawn(f) #=> #PID<0.40.0>
# `spawn` returns a pid (process identifier), you can use this pid to send
# messages to the process. To do message passing we use the `send` operator.
# For all of this to be useful we need to be able to receive messages. This is
-# achived with the `receive` mechanism:
+# achieved with the `receive` mechanism:
defmodule Geometry do
def area_loop do
receive do