]> source.dussan.org Git - jquery.git/commitdiff
Core: Fix comments for .get() method
authorBenjy Cui <benjytrys@gmail.com>
Tue, 18 Mar 2014 09:15:58 +0000 (17:15 +0800)
committerDave Methvin <dave.methvin@gmail.com>
Thu, 20 Mar 2014 16:50:52 +0000 (12:50 -0400)
Closes gh-1547

AUTHORS.txt
src/core.js

index 0aff9194c0870f743a92f8caecc8b8e2c3ec986e..954e97afe0e97ec81490d153fcc83aeea6bf464a 100644 (file)
@@ -217,3 +217,5 @@ Christopher Jones <chris@cjqed.com>
 Forbes Lindesay <forbes@lindesay.co.uk>
 S. Andrew Sheppard <andrew@wq.io>
 Roman Reiß <me@silverwind.io>
+Benjy Cui <benjytrys@gmail.com>
+
index c494d7a60f74f350f2b58a952458fde539e06b4e..b520b59303cb5faed20772e7512047b394179ee2 100644 (file)
@@ -57,10 +57,10 @@ jQuery.fn = jQuery.prototype = {
        get: function( num ) {
                return num != null ?
 
-                       // Return a 'clean' array
+                       // Return just the one element from the set
                        ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
 
-                       // Return just the object
+                       // Return all the elements in a clean array
                        slice.call( this );
        },