diff --git a/www/js/ui.js b/www/js/ui.js index 1444894..92961c7 100644 --- a/www/js/ui.js +++ b/www/js/ui.js @@ -230,7 +230,7 @@ const UI = { // Top Buttons buttons_top.push(UI.button("Pieces", () => { SCENE.load(SCENES.Guide); }, page == "guide_pieces")); - buttons_top.push(UI.button("Dropping", () => { SCENE.load(SCENES.Guide, "drop"); }, page == "guide_drop")); + buttons_top.push(UI.button("Drops", () => { SCENE.load(SCENES.Guide, "drop"); }, page == "guide_drop")); buttons_top.push(UI.button("Promotion", () => { SCENE.load(SCENES.Guide, "promote"); }, page == "guide_promote")); buttons_top.push(UI.button("Check", () => { SCENE.load(SCENES.Guide, "check"); }, page == "guide_check")); buttons_top.push(UI.button("Checkmate", () => { SCENE.load(SCENES.Guide, "checkmate"); }, page == "guide_checkmate"));