Skip to content

Commit e4300bb

Browse files
authored
Fix typo
1 parent 0873473 commit e4300bb

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

+2-2
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)