aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-06-08 12:15:53 +0200
committerSimon Ser <contact@emersion.fr>2023-06-08 12:15:53 +0200
commitfe016807da525e1c8bd29da4ecc1d3071df0ad19 (patch)
treebfa2346170ce2c70ea267221315caf47a2d52267
parent10d988b89155586f0e22f710031bb98c547595c2 (diff)
downloadgamja-fe016807da525e1c8bd29da4ecc1d3071df0ad19.tar.gz
gamja-fe016807da525e1c8bd29da4ecc1d3071df0ad19.zip
components/help: fix typo for Ctrl key bindings
-rw-r--r--components/help.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/help.js b/components/help.js
index 4ae3ecd..8d89fd0 100644
--- a/components/help.js
+++ b/components/help.js
@@ -6,7 +6,7 @@ function KeyBindingsHelp() {
let l = keybindings.map((binding) => {
let keys = [];
if (binding.ctrlKey) {
- keys.psuh("Ctrl");
+ keys.push("Ctrl");
}
if (binding.altKey) {
keys.push("Alt");