diff options
author | Johnathan Maudlin <maudlin.johnathan@gmail.com> | 2014-10-29 22:13:33 -0400 |
---|---|---|
committer | Johnathan Maudlin <maudlin.johnathan@gmail.com> | 2014-10-29 22:13:33 -0400 |
commit | 259c144eeb7b349a00891eb7bfa26ed564dfe580 (patch) | |
tree | d5620fc0ecba85da3f66d15ea0952eccfa718ebf /haskell.html.markdown | |
parent | fe277959606857f2690b4d6dd224fffc6a550d34 (diff) | |
parent | 7d0eaa855959c03b52795a7457001bbd69d88464 (diff) |
Merge pull request #1 from adambard/master
Merge from upstream
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r-- | haskell.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown index ad12de2a..2785405c 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -171,8 +171,8 @@ foldl1 (\acc x -> acc + x) [1..5] -- 15 -- 4. More functions ---------------------------------------------------- --- currying: if you don't pass in all the arguments to a function, --- it gets "curried". That means it returns a function that takes the +-- partial application: if you don't pass in all the arguments to a function, +-- it gets "partially applied". That means it returns a function that takes the -- rest of the arguments. add a b = a + b |