From: John Resig <jeresig@gmail.com>
Date: Mon, 12 Jan 2009 00:24:16 +0000 (+0000)
Subject: Made a note about the push method.
X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=1eae1541b8b4ca054d63d48f07001f55fa52fa5d;p=jquery.git

Made a note about the push method.
---

diff --git a/src/core.js b/src/core.js
index 186a216..78f0cae 100644
--- a/src/core.js
+++ b/src/core.js
@@ -266,6 +266,8 @@ jQuery.fn = jQuery.prototype = {
 		return this.prevObject || jQuery( [] );
 	},
 
+	// For internal use only.
+	// Behaves like an Array's .push method, not like a jQuery method.
 	push: [].push,
 
 	find: function( selector ) {