From 020414ce5123496be1813168800d0877c59ccc1c Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Sun, 22 Sep 2013 10:19:28 +0200 Subject: [PATCH] core: Fix cut off comment in jQuery.map from c72371f714. Close gh-1379. (cherry picked from commit 2aa2957d213c2801d9999a8902d041026fbb059a) --- src/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.js b/src/core.js index 9b1bb6257..d445a8f05 100644 --- a/src/core.js +++ b/src/core.js @@ -468,7 +468,7 @@ jQuery.extend({ isArray = isArraylike( elems ), ret = []; - // Go through the array, translating each of the items to their + // Go through the array, translating each of the items to their new values if ( isArray ) { for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg );