In some functional languages, partially applied functions and curried functions are two similar but distinct concepts.
Reading the book Learn You a Haskell for Great Good, the author appears to apply these interchangeably.
[Curried functions] Every function in Haskell officially only takes one parameter.
...
if we call a function with too few parameters, we get back a partially applied function, meaning a function that takes as many parameters as we left out.
My question is: Are the concepts of partial application and currying interchangeable in Haskell?