diff --git a/lib/koans/13_functions.ex b/lib/koans/13_functions.ex index de61d47..ba04144 100644 --- a/lib/koans/13_functions.ex +++ b/lib/koans/13_functions.ex @@ -68,7 +68,7 @@ defmodule Functions do end koan "Prefix a string with & to build a simple anonymous greet function" do - greet = &"Hello, #{&1}!" + greet = &"Hi, #{&1}!" assert greet.("Foo") == ___ end diff --git a/test/koans/functions_koans_test.exs b/test/koans/functions_koans_test.exs index ed96de4..088d3df 100644 --- a/test/koans/functions_koans_test.exs +++ b/test/koans/functions_koans_test.exs @@ -13,7 +13,7 @@ defmodule FunctionsTests do {:multiple, ["The number was zero", "The number was 5"]}, 6, 6, - "Hello, Foo!", + "Hi, Foo!", ["foo", "foo", "foo"], 100, 1000,