From 6be90f117b87e20f742cec382728142377847ba5 Mon Sep 17 00:00:00 2001
From: ilyagr <ilyagr@gmail.com>
Date: Wed, 3 Jul 2013 17:22:49 -0700
Subject: [PATCH] Update haskell.html.markdown

Fixed unmatched parentheses
---
 haskell.html.markdown | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/haskell.html.markdown b/haskell.html.markdown
index 840569fb..e8d7c077 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -269,7 +269,7 @@ foldl (\x y -> 2*x + y) 4 [1,2,3] -- 43
 foldr (\x y -> 2*x + y) 4 [1,2,3] -- 16
 
 -- This is now the same as
-(2 * 3 + (2 * 2 + (2 * 1 + 4)
+(2 * 3 + (2 * 2 + (2 * 1 + 4)))
 
 ----------------------------------------------------
 -- 7. Data Types