comment tweak

This commit is contained in:
Jeremy Ashkenas
2012-04-02 15:07:56 -04:00
parent 18ba865009
commit 6f5489fcab

View File

@@ -824,7 +824,7 @@
return toString.call(obj) == '[object Number]';
};
// Is a givin number finite?
// Is a given object a finite number?
_.isFinite = function(obj) {
return _.isNumber(obj) && isFinite(obj);
};