Skip to content

Commit a8f1b23

Browse files
committed
Fixed jsdoc errors
1 parent c5b7edd commit a8f1b23

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/plugins/BasePlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var Class = require('../utils/Class');
1616
* @constructor
1717
* @since 3.8.0
1818
*
19-
* @param {Phaser.Game} game - A reference to the Game instance this plugin is running under.
19+
* @param {Phaser.Plugins.PluginManager} pluginManager - A reference to the Plugin Manager.
2020
*/
2121
var BasePlugin = new Class({
2222

src/plugins/ScenePlugin.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ var Class = require('../utils/Class');
1919
* @constructor
2020
* @since 3.8.0
2121
*
22-
* @param {Phaser.Game} game - A reference to the Scene that has installed this plugin.
22+
* @param {Phaser.Scene} scene - A reference to the Scene that has installed this plugin.
23+
* @param {Phaser.Plugins.PluginManager} pluginManager - A reference to the Plugin Manager.
2324
*/
2425
var ScenePlugin = new Class({
2526

0 commit comments

Comments
 (0)