Remove explanation of tail recursion

Curious readers might look it up, so just mention it in passing and let
them focus on the task at hand: handling multiple messages.
This commit is contained in:
Jay Hayes
2016-05-04 15:13:49 -05:00
parent 4e4e35f575
commit 75c54e0585

View File

@@ -57,7 +57,7 @@ defmodule Processes do
end
end
koan "Use tail recursion (calling a function as the very last statement) to receive multiple messages" do
koan "Use tail recursion to receive multiple messages" do
pid = spawn &yelling_echo_loop/0
send pid, {self, "o"}