aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
authorTimo Tijhof <krinklemail@gmail.com>2013-09-22 10:19:28 +0200
committerRichard Gibson <richard.gibson@gmail.com>2013-09-23 10:11:11 -0400
commit020414ce5123496be1813168800d0877c59ccc1c (patch)
treeb075fae6062c75bc1320759d6180f0992f75ae2f /src/core.js
parente0e0ab5ed798715db36d6c748480a6acf4a2883b (diff)
downloadjquery-020414ce5123496be1813168800d0877c59ccc1c.tar.gz
jquery-020414ce5123496be1813168800d0877c59ccc1c.zip
core: Fix cut off comment in jQuery.map from c72371f714. Close gh-1379.
(cherry picked from commit 2aa2957d213c2801d9999a8902d041026fbb059a)
Diffstat (limited to 'src/core.js')
-rw-r--r--src/core.js2
1 files changed, 1 insertions, 1 deletions
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 );