mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Docs: Fix some faulty object parameters.
This commit is contained in:
parent
29bdf49a0f
commit
f68f1ad518
3 changed files with 3 additions and 3 deletions
|
@ -71,7 +71,7 @@ var Point = Base.extend(/** @lends Point# */{
|
||||||
* Creates a Point object using the properties in the given object.
|
* Creates a Point object using the properties in the given object.
|
||||||
*
|
*
|
||||||
* @name Point#initialize
|
* @name Point#initialize
|
||||||
* @param {object} the object describing the point's properties
|
* @param {Object} object the object describing the point's properties
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* // Creating a point using an object literal with length and angle
|
* // Creating a point using an object literal with length and angle
|
||||||
|
|
|
@ -61,7 +61,7 @@ var Size = Base.extend(/** @lends Size# */{
|
||||||
* Creates a Size object using the properties in the given object.
|
* Creates a Size object using the properties in the given object.
|
||||||
*
|
*
|
||||||
* @name Size#initialize
|
* @name Size#initialize
|
||||||
* @param {object} object
|
* @param {Object} object
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* // Creating a size of width: 10, height: 20 using an object literal:
|
* // Creating a size of width: 10, height: 20 using an object literal:
|
||||||
|
|
|
@ -249,7 +249,7 @@ var Style = Base.extend(new function() {
|
||||||
* to a Style object internally.
|
* to a Style object internally.
|
||||||
*
|
*
|
||||||
* @name Style#initialize
|
* @name Style#initialize
|
||||||
* @param {object} style
|
* @param {Object} style
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue