1
0
Fork 0

Minor documentation changes

closure/master
Mike Gerwitz 2010-11-10 20:45:33 -05:00
parent e870310341
commit 6a14b86777
3 changed files with 14 additions and 4 deletions

View File

@ -31,6 +31,16 @@ var Class = function()
}; };
/**
* Copies properties to the destination object
*
* The destination object is directly modified.
*
* @param {Object} props properties to copy
* @param {Object} dest destination object
*
* @return undefined
*/
var prop_copy = function( props, dest ) var prop_copy = function( props, dest )
{ {
// copy each of the properties to the destination object // copy each of the properties to the destination object

View File

@ -1,5 +1,5 @@
/** /**
* Tests Class class * Tests class module constructor creation
* *
* Copyright (C) 2010 Mike Gerwitz * Copyright (C) 2010 Mike Gerwitz
* *
@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @author Mike Gerwitz * @author Mike Gerwitz
* @package core * @package test
*/ */
require( './common' ); require( './common' );

View File

@ -1,5 +1,5 @@
/** /**
* Tests Class class * Tests class module object creation
* *
* Copyright (C) 2010 Mike Gerwitz * Copyright (C) 2010 Mike Gerwitz
* *
@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @author Mike Gerwitz * @author Mike Gerwitz
* @package core * @package test
*/ */
require( './common' ); require( './common' );