diff --git a/src/input/keyboard/combo/KeyCombo.js b/src/input/keyboard/combo/KeyCombo.js index 99c79b91c..ea09a9ac5 100644 --- a/src/input/keyboard/combo/KeyCombo.js +++ b/src/input/keyboard/combo/KeyCombo.js @@ -57,7 +57,7 @@ var ResetKeyCombo = require('./ResetKeyCombo'); * @constructor * @since 3.0.0 * - * @param {Phaser.Input.Keyboard.KeyboardManager} keyboardManager - A reference to the Keyboard Manager. + * @param {Phaser.Input.Keyboard.KeyboardPlugin} keyboardPlugin - A reference to the Keyboard Plugin. * @param {(string|integer[]|object[])} keys - The keys that comprise this combo. * @param {KeyComboConfig} [config] - A Key Combo configuration object. */ @@ -65,7 +65,7 @@ var KeyCombo = new Class({ initialize: - function KeyCombo (keyboardManager, keys, config) + function KeyCombo (keyboardPlugin, keys, config) { if (config === undefined) { config = {}; } @@ -79,10 +79,10 @@ var KeyCombo = new Class({ * A reference to the Keyboard Manager * * @name Phaser.Input.Keyboard.KeyCombo#manager - * @type {Phaser.Input.Keyboard.KeyboardManager} + * @type {Phaser.Input.Keyboard.KeyboardPlugin} * @since 3.0.0 */ - this.manager = keyboardManager; + this.manager = keyboardPlugin; /** * A flag that controls if this Key Combo is actively processing keys or not. diff --git a/src/input/keyboard/keys/ProcessKeyDown.js b/src/input/keyboard/keys/ProcessKeyDown.js index a1e67f1ca..702fc889b 100644 --- a/src/input/keyboard/keys/ProcessKeyDown.js +++ b/src/input/keyboard/keys/ProcessKeyDown.js @@ -5,7 +5,7 @@ */ /** - * Used internally by the KeyboardManager. + * Used internally by the Keyboard Plugin. * * @function Phaser.Input.Keyboard.ProcessKeyDown * @private diff --git a/src/input/keyboard/keys/ProcessKeyUp.js b/src/input/keyboard/keys/ProcessKeyUp.js index 817f9e48d..0ddf5b11e 100644 --- a/src/input/keyboard/keys/ProcessKeyUp.js +++ b/src/input/keyboard/keys/ProcessKeyUp.js @@ -5,7 +5,7 @@ */ /** - * Used internally by the KeyboardManager. + * Used internally by the Keyboard Plugin. * * @function Phaser.Input.Keyboard.ProcessKeyUp * @private