summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index 79fbf09f..d5dfd122 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -202,9 +202,9 @@ foo = (*5) . (+10)
foo 5 -- 75
-- fixing precedence
--- Haskell has another function called `$`. This changes the precedence
--- so that everything to the left of it gets computed first and then applied
--- to everything on the right. You can use `$` (often in combination with `.`)
+-- Haskell has another function called `$`. Anything appearing after it will
+-- take precedence over anything that comes before.
+-- You can use `$` (often in combination with `.`)
-- to get rid of a lot of parentheses:
-- before