summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2016-07-02 12:43:15 +0200
committerGitHub <noreply@github.com>2016-07-02 12:43:15 +0200
commita7eed36c1da2a16c7ced96e4d5fb0fb03bd94716 (patch)
treeab36c3c1737b4a1c669de7bb3631cd1a6dfc9a8a
parentdf4dbee36f5a3b9b63292a2346327f8b7d282a28 (diff)
fix #2295
-rw-r--r--elm.html.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/elm.html.markdown b/elm.html.markdown
index fa10671f..dab2ab34 100644
--- a/elm.html.markdown
+++ b/elm.html.markdown
@@ -156,6 +156,7 @@ List.map (\a -> a * 2) [1..4] -- [2, 4, 6, 8]
-- You can pattern match in function definitions when there's only one case.
-- This function takes one tuple rather than two arguments.
+-- This is the way you'll usually unpack/extract values from tuples.
area (width, height) =
width * height