From c9b20bb09afbc4b55ef964cb3a061f9959330283 Mon Sep 17 00:00:00 2001 From: Jay Hayes Date: Wed, 4 May 2016 19:33:27 -0500 Subject: [PATCH] Update description of piping --- lib/koans/08_functions.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))