diff --git a/lib/koans/08_functions.ex b/lib/koans/08_functions.ex index f674a77..b3bf323 100644 --- a/lib/koans/08_functions.ex +++ b/lib/koans/08_functions.ex @@ -77,7 +77,7 @@ defmodule Functions do assert times_five_and_then(2, cube) == ___ end - koan "Functions can be combined elegantly with the pipe operator" do + koan "The result of a function can be piped into the first argument of another function" do result = "full-name" |> String.split("-") |> Enum.map(&(String.capitalize(&1)))