From 4e00fa4734bd39436f3336b4ce1034b65c265657 Mon Sep 17 00:00:00 2001
From: Cornel Punga <cornel.punga@gmail.com>
Date: Mon, 16 Mar 2015 21:09:17 +0200
Subject: [PATCH] Update haskell.html.markdown. Wrong explanation about '$'
 operator

---
 haskell.html.markdown | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/haskell.html.markdown b/haskell.html.markdown
index 79fbf09fdb..d5dfd122bb 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