fixes typos and some formatting

This commit is contained in:
Rabea Gleissner
2016-04-22 15:04:59 +01:00
parent 52ac7955e5
commit ee084b4563
8 changed files with 11 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ defmodule Tasks do
use Koans
koan "Tasks can be used for asynchronous computations with results" do
task = Task.async(fn -> 3 *3 end)
task = Task.async(fn -> 3 * 3 end)
do_other_stuff()
assert Task.await(task) + 1 == ___
end