Merge pull request #6895 from Andrek25/fix/typos

fix(typedefs): fixing some typo error
This commit is contained in:
Richard Davey 2024-08-25 21:26:46 +01:00 committed by GitHub
commit ec753ae195
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
* @property {number} height - The height size of camera
* @property {number} zoom - The zoom of camera
* @property {number} rotation - The rotation of camera
* @property {boolean} roundPixels - The round pixels st status of camera
* @property {boolean} roundPixels - The round pixels indicate the status of the camera
* @property {number} scrollX - The horizontal scroll of camera
* @property {number} scrollY - The vertical scroll of camera
* @property {string} backgroundColor - The background color of camera

View file

@ -312,7 +312,7 @@ var Config = new Class({
// If you do: { banner: false } it won't display any banner at all
/**
* @const {boolean} Phaser.Core.Config#hideBanner - Don't write the banner line to the console.log. See `Phaser.TYpes.Core.BannerConfig` for details of this object.
* @const {boolean} Phaser.Core.Config#hideBanner - Don't write the banner line to the console.log. See `Phaser.Types.Core.BannerConfig` for details of this object.
*/
this.hideBanner = (GetValue(config, 'banner', null) === false);