diff options
author | Greg Yang <gregly@zoho.com> | 2015-10-20 12:10:01 -0700 |
---|---|---|
committer | Greg Yang <gregly@zoho.com> | 2015-10-20 12:10:01 -0700 |
commit | 18edced524b790fe3e6c9bb5f69507ca1bfb0553 (patch) | |
tree | 2d2ebc1e5b90eba9f24f03608fd3381b990c6a12 /haskell.html.markdown | |
parent | a76be91a2d45c7c4a834c2ad6d5164ac907c1038 (diff) |
update the comment in as well
Diffstat (limited to 'haskell.html.markdown')
-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 c6d97496..e3b29937 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -198,7 +198,7 @@ foo 5 -- 15 -- multiplies the result of that by 4, and then returns the final value. foo = (*4) . (+10) --- (5 + 10) * 4 = 75 +-- (5 + 10) * 4 = 40 foo 5 -- 60 -- fixing precedence |