Merge pull request #4911 from javigaralva/fix-updateList-doc

Fixed semicolon in updateList doc
This commit is contained in:
Richard Davey 2019-12-18 14:27:22 +00:00 committed by GitHub
commit 7e33444238
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ var GameObjectCreator = new Class({
/**
* A reference to the Scene Update List.
*
* @name Phaser.GameObjects.GameObjectCreator#updateList;
* @name Phaser.GameObjects.GameObjectCreator#updateList
* @type {Phaser.GameObjects.UpdateList}
* @protected
* @since 3.0.0

View file

@ -62,7 +62,7 @@ var GameObjectFactory = new Class({
/**
* A reference to the Scene Update List.
*
* @name Phaser.GameObjects.GameObjectFactory#updateList;
* @name Phaser.GameObjects.GameObjectFactory#updateList
* @type {Phaser.GameObjects.UpdateList}
* @protected
* @since 3.0.0
@ -105,7 +105,7 @@ var GameObjectFactory = new Class({
/**
* Adds an existing Game Object to this Scene.
*
*
* If the Game Object renders, it will be added to the Display List.
* If it has a `preUpdate` method, it will be added to the Update List.
*