summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-07-03 17:23:55 -0700
committerAdam Bard <github@adambard.com>2013-07-03 17:23:55 -0700
commit69e191458a6377e2b3e7bdb2126a046cc4ec7967 (patch)
treea4381175d2483d6c6585e2f3744f4d41610ca281 /haskell.html.markdown
parent7ec9e44ef098b287cda6c4030ae44de38fe4cdd6 (diff)
parent6be90f117b87e20f742cec382728142377847ba5 (diff)
Merge pull request #100 from ilyagr/before
Update haskell.html.markdown
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 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