diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2013-09-22 10:19:28 +0200 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2013-09-23 10:10:46 -0400 |
commit | 2aa2957d213c2801d9999a8902d041026fbb059a (patch) | |
tree | 2eaec9fb3e177e9ce4d2eb86d10378c5745a5a68 /src/core.js | |
parent | 210cbcf520c16e8997b2748bca7c18f329081c84 (diff) | |
download | jquery-2aa2957d213c2801d9999a8902d041026fbb059a.tar.gz jquery-2aa2957d213c2801d9999a8902d041026fbb059a.zip |
core: Fix cut off comment in jQuery.map from c72371f714. Close gh-1379.
Diffstat (limited to 'src/core.js')
-rw-r--r-- | src/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |