From 9fc563dcccb4a688d9708bd18d2cfc3462f29693 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Thu, 17 Oct 2024 00:27:59 +1300 Subject: [PATCH] fix(curriculum): Odin Rock Paper Scissors array (#56696) --- .../build-a-rock-paper-scissors-game.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md b/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md index d31a63c9495..4716df57cdc 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md +++ b/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md @@ -166,7 +166,7 @@ assert.match(playGame(), /You (win|lose) the game!/); ## --seed-contents-- ```js -const hand = ['rock', 'paper', 'scissor']; +const hand = ['rock', 'paper', 'scissors']; ``` ```html