From 8c6694c2426b11ccbf7ae9ddc1cacefe45545454 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 5 Mar 2010 15:24:53 -0500 Subject: [PATCH] comment grammar --- underscore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/underscore.js b/underscore.js index 1c6f6fb20..e57d45bac 100644 --- a/underscore.js +++ b/underscore.js @@ -45,7 +45,7 @@ nativeIsArray = Array.isArray, nativeKeys = Object.keys; - // Create a safe reference to the Underscore object for reference below. + // Create a safe reference to the Underscore object for use below. var _ = function(obj) { return new wrapper(obj); }; // Export the Underscore object for CommonJS. @@ -209,7 +209,7 @@ return result.value; }; - // Sort the object's values by a criteria produced by an iterator. + // Sort the object's values by a criterion produced by an iterator. _.sortBy = function(obj, iterator, context) { return _.pluck(_.map(obj, function(value, index, list) { return {