From 7fc9466152816f39a3b58a50c71c09f1d15712a4 Mon Sep 17 00:00:00 2001 From: Serge Korzh <15277406+souserge@users.noreply.github.com> Date: Sat, 6 Oct 2018 17:59:00 +0200 Subject: [PATCH] Change arg names of `append` to remove shadowing --- src/pages/docs/syntax.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/docs/syntax.elm b/src/pages/docs/syntax.elm index fae1cb491..3a950f1fe 100644 --- a/src/pages/docs/syntax.elm +++ b/src/pages/docs/syntax.elm @@ -274,7 +274,7 @@ their own top-level definitions. ```elm -- alias for appending lists and two lists -append xs ys = xs ++ ys +append listOne listTwo = listOne ++ listTwo xs = [1,2,3] ys = [4,5,6]