From 1050deb59fcdea0396e529c77b07176c92222716 Mon Sep 17 00:00:00 2001 From: ksmai Date: Sun, 29 Apr 2018 16:25:44 +0800 Subject: [PATCH] Fix JSDoc parameter type in Actions.GridAlign --- src/actions/GridAlign.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/GridAlign.js b/src/actions/GridAlign.js index a679ef5a6..9790f9bb9 100644 --- a/src/actions/GridAlign.js +++ b/src/actions/GridAlign.js @@ -19,7 +19,7 @@ var tempZone = new Zone({ sys: { queueDepthSort: NOOP, events: { once: NOOP } } * If both this value and height are set to -1 then this value overrides it and the `height` value is ignored. * @property {integer} [height=-1] - The height of the grid in items (not pixels). -1 means lay all items out vertically, regardless of quantity. * If both this value and `width` are set to -1 then `width` overrides it and this value is ignored. - * @property {boolean} [cellWidth=1] - The width of the cell, in pixels, in which the item is positioned. + * @property {integer} [cellWidth=1] - The width of the cell, in pixels, in which the item is positioned. * @property {integer} [cellHeight=1] - The height of the cell, in pixels, in which the item is positioned. * @property {integer} [position=0] - The alignment position. One of the Phaser.Display.Align consts such as `TOP_LEFT` or `RIGHT_CENTER`. * @property {number} [x=0] - Optionally place the top-left of the final grid at this coordinate.