Skip to content

Commit 17603b1

Browse files
authored
fix(curriculum): country spelling issue in lab voting system challenge 26 (freeCodeCamp#60608)
1 parent 798015d commit 17603b1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

curriculum/challenges/english/25-front-end-development/lab-voting-system/673b567e3ba535dda140d278.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,16 @@ try {
162162
}
163163
```
164164

165-
When `Malysia` exists in the voting options, `vote("Malysia", "traveler1")` should return `Voter traveler1 voted for "Malysia".`
165+
When `Malaysia` exists in the voting options, `vote("Malaysia", "traveler1")` should return `Voter traveler1 voted for "Malaysia".`
166166

167167
```js
168168
const pollCopy = new Map(poll);
169169
try {
170170
poll.clear();
171-
addOption('Malysia');
171+
addOption('Malaysia');
172172
assert.equal(
173-
vote('Malysia', 'traveler1'),
174-
'Voter traveler1 voted for "Malysia".'
173+
vote('Malaysia', 'traveler1'),
174+
'Voter traveler1 voted for "Malaysia".'
175175
);
176176
} finally {
177177
poll.clear();

0 commit comments

Comments
 (0)