From: Timo Tijhof Date: Sun, 22 Sep 2013 08:19:28 +0000 (+0200) Subject: core: Fix cut off comment in jQuery.map from c72371f714. Close gh-1379. X-Git-Tag: 2.1.0-beta2~80 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2aa2957d213c2801d9999a8902d041026fbb059a;p=jquery.git core: Fix cut off comment in jQuery.map from c72371f714. Close gh-1379. --- diff --git a/src/core.js b/src/core.js index 0a8ba3893..fd367a508 100644 --- a/src/core.js +++ b/src/core.js @@ -428,7 +428,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 );