Skip to content

Commit d161c7f

Browse files
committed
Corrected jsdocs
1 parent 2e05cab commit d161c7f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/input/keyboard/KeyboardManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var KeyboardManager = new Class({
7272
* An array of Key Code values that will automatically have `preventDefault` called on them,
7373
* as long as the `KeyboardManager.preventDefault` boolean is set to `true`.
7474
*
75-
* By default the array contains: The Space Key, the Cursor Keys, 0 to 9 and A to Z.
75+
* By default the array is empty.
7676
*
7777
* The key must be non-modified when pressed in order to be captured.
7878
*
@@ -206,7 +206,7 @@ var KeyboardManager = new Class({
206206
// Do nothing if event already handled
207207
return;
208208
}
209-
209+
210210
_this.queue.push(event);
211211

212212
var modified = (event.altKey || event.ctrlKey || event.shiftKey || event.metaKey);

0 commit comments

Comments
 (0)