Fixed spacing with Elixir comment.

This commit is contained in:
chris@chriszimmerman.net 2015-10-17 20:49:58 -04:00
parent 9f510f3044
commit 07e04e7a2d

View File

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