Skip to content

Commit b57ab09

Browse files
committed
The KeyCode FORWAD_SLASH had a typo and has been changed to FORWAD_SLASH. Fix phaserjs#3271 (thanks @josedarioxyz)
1 parent 997338c commit b57ab09

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
### Bug Fixes
1111

12+
* The KeyCode `FORWAD_SLASH` had a typo and has been changed to `FORWAD_SLASH`. Fix #3271 (thanks @josedarioxyz)
1213

1314

1415

src/input/keyboard/keys/KeyCodes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,11 +525,11 @@ module.exports = {
525525
PERIOD: 190,
526526

527527
/**
528-
* @name Phaser.Input.Keyboard.KeyCodes.FORWAD_SLASH
528+
* @name Phaser.Input.Keyboard.KeyCodes.FORWARD_SLASH
529529
* @type {integer}
530530
* @since 3.0.0
531531
*/
532-
FORWAD_SLASH: 191,
532+
FORWARD_SLASH: 191,
533533

534534
/**
535535
* @name Phaser.Input.Keyboard.KeyCodes.BACK_SLASH

0 commit comments

Comments
 (0)