mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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.
|
||||
*
|
||||
* @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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -249,7 +249,7 @@ var Style = Base.extend(new function() {
|
|||
* to a Style object internally.
|
||||
*
|
||||
* @name Style#initialize
|
||||
* @param {object} style
|
||||
* @param {Object} style
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue