Merge pull request #770 from nt591/elixir

[elixir/en] fix typo
This commit is contained in:
Nami-Doc 2014-09-18 19:46:12 +02:00
commit d12bfcdc18

View File

@ -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