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