summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2018-08-01 21:12:35 -0700
committerGitHub <noreply@github.com>2018-08-01 21:12:35 -0700
commitd063ea64694226c9490d5fe6da3b960449c3bfe3 (patch)
tree2196565bb61b3b0a1961b50cecbec96a01f1d8a7 /haskell.html.markdown
parentc421b1bd0d18ab57c88665bd14b289e75724cf37 (diff)
Restore lost articles
I'm afraid we need these
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index e9ddf54d..90d47c27 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -210,7 +210,7 @@ foo 5 -- 60
-- to a given parameter. In contrast to standard function application, which
-- has highest possible priority of 10 and is left-associative, the `$` operator
-- has priority of 0 and is right-associative. Such a low priority means that
--- the expression on its right is applied as parameter to function on its left.
+-- the expression on its right is applied as a parameter to the function on its left.
-- before
even (fib 7) -- false