Skip to content

Commit 9fc563d

Browse files
authored
fix(curriculum): Odin Rock Paper Scissors array (freeCodeCamp#56696)
1 parent b021f3e commit 9fc563d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ assert.match(playGame(), /You (win|lose) the game!/);
166166
## --seed-contents--
167167
168168
```js
169-
const hand = ['rock', 'paper', 'scissor'];
169+
const hand = ['rock', 'paper', 'scissors'];
170170
```
171171
172172
```html

0 commit comments

Comments
 (0)