From 5fe08a18ac750e2319b0f78ce56630010adf9ee7 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 15 Mar 2011 00:17:02 -0400 Subject: [PATCH] Corrected argument documentation --- lib/class.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/class.js b/lib/class.js index a5bd797..a562345 100644 --- a/lib/class.js +++ b/lib/class.js @@ -973,7 +973,7 @@ function createMeta( func, cparent ) * Since a reference is returned (rather than a copy), the returned object can * be modified to alter the metadata. * - * @param {number} id id of class to retrieve metadata for + * @param {Class} cls class from which to retrieve metadata * * @return {Object} */ @@ -996,8 +996,8 @@ function getMeta( cls ) * overridden by the subtype to continue to use the private members of the * supertype. * - * @param {function()} method method to look up instance object for - * @param {number} cid class id + * @param {function()} inst instance that the method is being called from + * @param {number} cid class id * * @return {Object,null} instance object if found, otherwise null */