Skip to content

Commit 49476f4

Browse files
authored
Merge pull request #1027 from DouglasMV/master
Fix typo
2 parents 39ea587 + e4300bb commit 49476f4

File tree

1 file changed

+2
-2
lines changed
  • 1-js/05-data-types/02-number/3-repeat-until-number/_js.view

1 file changed

+2
-2
lines changed

1-js/05-data-types/02-number/3-repeat-until-number/_js.view/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("readNumber", function() {
1818
assert.strictEqual(readNumber(), 0);
1919
});
2020

21-
it("continues the loop unti meets a number", function() {
21+
it("continues the loop until meets a number", function() {
2222
prompt.onCall(0).returns("not a number");
2323
prompt.onCall(1).returns("not a number again");
2424
prompt.onCall(2).returns("1");
@@ -35,4 +35,4 @@ describe("readNumber", function() {
3535
assert.isNull(readNumber());
3636
});
3737

38-
});
38+
});

0 commit comments

Comments
 (0)