Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DouglasMV authored May 30, 2019
1 parent 0873473 commit e4300bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe("readNumber", function() {
assert.strictEqual(readNumber(), 0);
});

it("continues the loop unti meets a number", function() {
it("continues the loop until meets a number", function() {
prompt.onCall(0).returns("not a number");
prompt.onCall(1).returns("not a number again");
prompt.onCall(2).returns("1");
Expand All @@ -35,4 +35,4 @@ describe("readNumber", function() {
assert.isNull(readNumber());
});

});
});

0 comments on commit e4300bb

Please sign in to comment.