diff options
author | chris@chriszimmerman.net <cjay.zimmerman@gmail.com> | 2015-10-17 20:49:58 -0400 |
---|---|---|
committer | chris@chriszimmerman.net <cjay.zimmerman@gmail.com> | 2015-10-17 20:49:58 -0400 |
commit | 07e04e7a2d0f2b7269e4495c338b039a30f70e64 (patch) | |
tree | 5c8f19e6eec2d6f17b0e6db0c95a571c85a6f96e /elixir.html.markdown | |
parent | 9f510f3044138429ce616c390e42d8e0b6ceb2df (diff) |
Fixed spacing with Elixir comment.
Diffstat (limited to 'elixir.html.markdown')
-rw-r--r-- | elixir.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elixir.html.markdown b/elixir.html.markdown index 60f0b01c..eedeb227 100644 --- a/elixir.html.markdown +++ b/elixir.html.markdown @@ -391,7 +391,7 @@ end # Compile the module and create a process that evaluates `area_loop` in the shell pid = spawn(fn -> Geometry.area_loop() end) #=> #PID<0.40.0> -#Alternatively +# Alternatively pid = spawn(Geometry, :area_loop, []) # Send a message to `pid` that will match a pattern in the receive statement |