Skip to content

Commit c8f6dfd

Browse files
committed
Fixed this return types for Phaser.Geom.Circle
1 parent 1969c8f commit c8f6dfd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/geom/circle/Circle.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ var Circle = new Class({
173173
* @param {number} [y=0] - The y position of the center of the circle.
174174
* @param {number} [radius=0] - The radius of the circle.
175175
*
176-
* @return {Phaser.Geom.Circle} This Circle object.
176+
* @return {this} This Circle object.
177177
*/
178178
setTo: function (x, y, radius)
179179
{
@@ -192,7 +192,7 @@ var Circle = new Class({
192192
* @method Phaser.Geom.Circle#setEmpty
193193
* @since 3.0.0
194194
*
195-
* @return {Phaser.Geom.Circle} This Circle object.
195+
* @return {this} This Circle object.
196196
*/
197197
setEmpty: function ()
198198
{
@@ -211,7 +211,7 @@ var Circle = new Class({
211211
* @param {number} [x=0] - The x position of the center of the circle.
212212
* @param {number} [y=0] - The y position of the center of the circle.
213213
*
214-
* @return {Phaser.Geom.Circle} This Circle object.
214+
* @return {this} This Circle object.
215215
*/
216216
setPosition: function (x, y)
217217
{

0 commit comments

Comments
 (0)