Skip to content

Commit 5bd231d

Browse files
committed
JSDoc fixes.
1 parent 569483a commit 5bd231d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/core/FlexGrid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Phaser.FlexGrid = function (manager, width, height) {
2626
this.game = manager.game;
2727

2828
/**
29-
* @property {Phaser.ScaleManager} scale - A reference to the ScaleManager.
29+
* @property {Phaser.ScaleManager} manager - A reference to the ScaleManager.
3030
*/
3131
this.manager = manager;
3232

src/input/Input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Phaser.Input = function (game) {
6262
this.enabled = true;
6363

6464
/**
65-
* @property {number} multiInputOverride - Controls the expected behaviour when using a mouse and touch together on a multi-input device.
65+
* @property {number} multiInputOverride - Controls the expected behavior when using a mouse and touch together on a multi-input device.
6666
* @default
6767
*/
6868
this.multiInputOverride = Phaser.Input.MOUSE_TOUCH_COMBINE;

src/input/Mouse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Phaser.Mouse = function (game) {
5858
this.mouseWheelCallback = null;
5959

6060
/**
61-
* @property {boolean} capture - If true the DOM mouse events will have event.preventDefault applied to them, if false they will propogate fully.
61+
* @property {boolean} capture - If true the DOM mouse events will have event.preventDefault applied to them, if false they will propagate fully.
6262
*/
6363
this.capture = false;
6464

0 commit comments

Comments
 (0)