Skip to content

Commit eb72e4c

Browse files
committed
Fixing jsdoc headers.
1 parent 7528783 commit eb72e4c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/geom/Circle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Creates a new Circle object with the center coordinate specified by the x and y parameters and the diameter specified by the diameter parameter.
99
* If you call this function without parameters, a circle with x, y, diameter and radius properties set to 0 is created.
1010
*
11-
* @class Circle
11+
* @class Phaser.Circle
1212
* @constructor
1313
* @param {number} [x=0] - The x coordinate of the center of the circle.
1414
* @param {number} [y=0] - The y coordinate of the center of the circle.

src/geom/Ellipse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Creates a Ellipse object. A curve on a plane surrounding two focal points.
1010
*
11-
* @class Ellipse
11+
* @class Phaser.Ellipse
1212
* @constructor
1313
* @param {number} [x=0] - The X coordinate of the upper-left corner of the framing rectangle of this ellipse.
1414
* @param {number} [y=0] - The Y coordinate of the upper-left corner of the framing rectangle of this ellipse.

src/geom/Line.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Creates a new Line object with a start and an end point.
99
*
10-
* @class Line
10+
* @class Phaser.Line
1111
* @constructor
1212
* @param {number} [x1=0] - The x coordinate of the start of the line.
1313
* @param {number} [y1=0] - The y coordinate of the start of the line.

0 commit comments

Comments
 (0)