From 6baf8e877b94046cefb0b1bb514f38511dd47719 Mon Sep 17 00:00:00 2001
From: Vladimir Chernis
Date: Thu, 22 Dec 2011 11:26:44 -0800
Subject: [PATCH] doc for bind: currying -> partial application
---
index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 };