Skip to content

Commit 023cef4

Browse files
rootroot
authored andcommitted
fix brain-even
1 parent ed2175a commit 023cef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games/brainEven.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import theMotor from "../index.js";
33
const getRandomNum = (min = 1, max = 99) => Math.floor(Math.random() * (max - min + 1) + min);
44
const isEven = (number) => number % 2 === 0;
55

6-
const description = 'Answer "yes" if number odd otherwise answer "no"';
6+
const description = 'Answer "yes" if the number is even, otherwise answer "no".';
77
const genRounds = ()=>{
88
const minNum = 1;
99
const maxNum = 100;

0 commit comments

Comments
 (0)