diff --git a/underscore.js b/underscore.js index d0200efe5..6b5a0b06e 100644 --- a/underscore.js +++ b/underscore.js @@ -407,7 +407,7 @@ // Create a function bound to a given object (assigning `this`, and arguments, // optionally). Binding with arguments is also known as `curry`. - // Delegates to **ECMAScript 5**'s native `Object.bind` if available. + // Delegates to **ECMAScript 5**'s native `Function.bind` if available. _.bind = function(func, obj) { var args = slice.call(arguments, 2); if(nativeBind && func.bind === nativeBind) return FuncProto.bind.apply(func, slice.call(arguments, 1));