diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-10-21 19:22:21 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-10-21 19:22:21 -0500 |
commit | 4afe0d8ce0149dfd59905ad6134cd03ebb993783 (patch) | |
tree | 04b589c9dca8073b3589fe46f86a25d62391d77a /haskell.html.markdown | |
parent | 87dcc1776f26576c6af1e42e220f6d4539039640 (diff) | |
parent | a7b885816d08372d33e0eece7c8e0834c699e7a6 (diff) |
Merge pull request #816 from hobozo/patch-1
Update haskell.html.markdown
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 |