mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 15:14:47 +00:00
The KeyCode FORWAD_SLASH
had a typo and has been changed to FORWAD_SLASH
. Fix #3271 (thanks @josedarioxyz)
This commit is contained in:
parent
997338c35b
commit
b57ab091c1
2 changed files with 3 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
### Bug Fixes
|
||||
|
||||
* The KeyCode `FORWAD_SLASH` had a typo and has been changed to `FORWAD_SLASH`. Fix #3271 (thanks @josedarioxyz)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -525,11 +525,11 @@ module.exports = {
|
|||
PERIOD: 190,
|
||||
|
||||
/**
|
||||
* @name Phaser.Input.Keyboard.KeyCodes.FORWAD_SLASH
|
||||
* @name Phaser.Input.Keyboard.KeyCodes.FORWARD_SLASH
|
||||
* @type {integer}
|
||||
* @since 3.0.0
|
||||
*/
|
||||
FORWAD_SLASH: 191,
|
||||
FORWARD_SLASH: 191,
|
||||
|
||||
/**
|
||||
* @name Phaser.Input.Keyboard.KeyCodes.BACK_SLASH
|
||||
|
|
Loading…
Reference in a new issue