Skip to content

Commit 5d11497

Browse files
committed
Fixed this return types for Phaser.Geom.Ellipse
1 parent c8f6dfd commit 5d11497

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/geom/ellipse/Ellipse.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ var Ellipse = new Class({
176176
* @param {number} width - The width of the ellipse.
177177
* @param {number} height - The height of the ellipse.
178178
*
179-
* @return {Phaser.Geom.Ellipse} This Ellipse object.
179+
* @return {this} This Ellipse object.
180180
*/
181181
setTo: function (x, y, width, height)
182182
{
@@ -195,7 +195,7 @@ var Ellipse = new Class({
195195
* @method Phaser.Geom.Ellipse#setEmpty
196196
* @since 3.0.0
197197
*
198-
* @return {Phaser.Geom.Ellipse} This Ellipse object.
198+
* @return {this} This Ellipse object.
199199
*/
200200
setEmpty: function ()
201201
{
@@ -214,7 +214,7 @@ var Ellipse = new Class({
214214
* @param {number} x - The x position of the center of the ellipse.
215215
* @param {number} y - The y position of the center of the ellipse.
216216
*
217-
* @return {Phaser.Geom.Ellipse} This Ellipse object.
217+
* @return {this} This Ellipse object.
218218
*/
219219
setPosition: function (x, y)
220220
{
@@ -236,7 +236,7 @@ var Ellipse = new Class({
236236
* @param {number} width - The width of the ellipse.
237237
* @param {number} [height=width] - The height of the ellipse.
238238
*
239-
* @return {Phaser.Geom.Ellipse} This Ellipse object.
239+
* @return {this} This Ellipse object.
240240
*/
241241
setSize: function (width, height)
242242
{

0 commit comments

Comments
 (0)