Skip to content

Commit a3c7125

Browse files
authored
03_numberChecker: Fix grammar (#655)
1 parent 1d0a568 commit a3c7125

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

foundations/03_numberChecker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Modify the code so it returns `true` when the number is greater than or equal to
44

55
Currently, the code returns `true` if the number is `6`, otherwise, it returns `false`.
66

7-
You may also notice that in this exercise, there are multiple tests (in the file `numberChecker.spec.js`). Only the first test is currently enabled. So after making sure that the first test passes, enable the next one by deleting the `.skip` portion from the `test.skip()` function. It is usually easier if you enable only one test a time, then edit your code so that it passes. You can keep enabling only one at a time until slowly but surely, they all pass!
7+
You may also notice that in this exercise, there are multiple tests (in the file `numberChecker.spec.js`). Only the first test is currently enabled. So after making sure that the first test passes, enable the next one by deleting the `.skip` portion from the `test.skip()` function. It is usually easier if you enable only one test at a time, then edit your code so that it passes. You can keep enabling only one at a time until slowly but surely, they all pass!
88

99
If running `npm test numberChecker.spec.js` returns results similar to what is shown below (showing some tests are skipped), make sure that you have enabled the rest of the tests, as described in the instructions above:
1010

0 commit comments

Comments
 (0)