diff options
author | ilyagr <ilyagr@gmail.com> | 2013-07-03 17:22:49 -0700 |
---|---|---|
committer | ilyagr <ilyagr@gmail.com> | 2013-07-03 17:22:49 -0700 |
commit | 6be90f117b87e20f742cec382728142377847ba5 (patch) | |
tree | 3e11cb8744405f98bacaa723eca5f1bb19aadca1 | |
parent | d92508a4cb19278146dc49209e9abf1a4dd1330a (diff) |
Update haskell.html.markdown
Fixed unmatched parentheses
-rw-r--r-- | haskell.html.markdown | 2 |
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 |