1
0
Fork 0

Corrected argument documentation

closure/master
Mike Gerwitz 2011-03-15 00:17:02 -04:00
parent b2161d1822
commit 5fe08a18ac
1 changed files with 3 additions and 3 deletions

View File

@ -973,7 +973,7 @@ function createMeta( func, cparent )
* Since a reference is returned (rather than a copy), the returned object can * Since a reference is returned (rather than a copy), the returned object can
* be modified to alter the metadata. * 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} * @return {Object}
*/ */
@ -996,8 +996,8 @@ function getMeta( cls )
* overridden by the subtype to continue to use the private members of the * overridden by the subtype to continue to use the private members of the
* supertype. * supertype.
* *
* @param {function()} method method to look up instance object for * @param {function()} inst instance that the method is being called from
* @param {number} cid class id * @param {number} cid class id
* *
* @return {Object,null} instance object if found, otherwise null * @return {Object,null} instance object if found, otherwise null
*/ */