Add a little more context to example description

This commit is contained in:
Jay Hayes
2016-05-02 18:51:01 -05:00
parent dacaf4c0b1
commit 6772308e9a

View File

@@ -25,7 +25,7 @@ defmodule Processes do
end
end
koan "A common pattern is to include the sender in the message" do
koan "A common pattern is to include the sender in the message, so that it can reply" do
pid = spawn(fn -> receive do
{:hello, sender} -> send sender, :how_are_you?
_ -> assert false