Subjective word ordering

Subjectively, I find this to read better. Perhaps it's part of my North
American dialect?
This commit is contained in:
Jay Hayes
2016-04-23 13:07:38 -05:00
parent f780777218
commit bc29450f67

View File

@@ -44,7 +44,7 @@ defmodule Processes do
assert Process.alive?(pid) == ___
end
koan "You can also terminate other processes than yourself" do
koan "You can also terminate processes other than yourself" do
pid = spawn(fn -> receive do end end)
assert Process.alive?(pid) == ___