fix(curriculum): Odin Rock Paper Scissors array (#56696)

This commit is contained in:
Supravisor
2024-10-17 00:27:59 +13:00
committed by GitHub
parent b021f3eb5d
commit 9fc563dccc

View File

@@ -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