doc for bind: currying -> partial application

This commit is contained in:
Vladimir Chernis
2011-12-22 11:26:44 -08:00
parent e58af52060
commit 6baf8e877b

View File

@@ -715,7 +715,7 @@ _.range(0);
Bind a <b>function</b> to an <b>object</b>, meaning that whenever
the function is called, the value of <i>this</i> will be the <b>object</b>.
Optionally, bind <b>arguments</b> to the <b>function</b> to pre-fill them,
also known as <b>currying</b>.
also known as <b>partial application</b>.
</p>
<pre>
var func = function(greeting){ return greeting + ': ' + this.name };