Docs: Fix some faulty object parameters.

This commit is contained in:
Jürg Lehni 2013-07-02 12:22:45 -07:00
parent 29bdf49a0f
commit f68f1ad518
3 changed files with 3 additions and 3 deletions

View file

@ -71,7 +71,7 @@ var Point = Base.extend(/** @lends Point# */{
* Creates a Point object using the properties in the given object.
*
* @name Point#initialize
* @param {object} the object describing the point's properties
* @param {Object} object the object describing the point's properties
*
* @example
* // Creating a point using an object literal with length and angle

View file

@ -61,7 +61,7 @@ var Size = Base.extend(/** @lends Size# */{
* Creates a Size object using the properties in the given object.
*
* @name Size#initialize
* @param {object} object
* @param {Object} object
*
* @example
* // Creating a size of width: 10, height: 20 using an object literal:

View file

@ -249,7 +249,7 @@ var Style = Base.extend(new function() {
* to a Style object internally.
*
* @name Style#initialize
* @param {object} style
* @param {Object} style
*/
/**