diff --git a/index.html b/index.html index ca2ec79ba..7bdc7afa3 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 };