From 0a96543a1179636e4efeb3c654c075952aca0c9f Mon Sep 17 00:00:00 2001 From: Maribeth Bottorff Date: Mon, 13 Dec 2021 14:56:05 -0800 Subject: [PATCH] fix: fix keycodes type (#5805) --- core/shortcut_registry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/shortcut_registry.js b/core/shortcut_registry.js index 58de799d0..4fcec3f7c 100644 --- a/core/shortcut_registry.js +++ b/core/shortcut_registry.js @@ -51,7 +51,7 @@ const ShortcutRegistry = function() { /** * Enum of valid modifiers. - * @enum {!KeyCodes} + * @enum {!KeyCodes} */ ShortcutRegistry.modifierKeys = { 'Shift': KeyCodes.SHIFT,