Merge pull request #1027 from DouglasMV/master

Fix typo
This commit is contained in:
Ilya Kantor 2019-05-31 09:28:55 +03:00 committed by GitHub
commit 49476f4c72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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");
@ -35,4 +35,4 @@ describe("readNumber", function() {
assert.isNull(readNumber());
});
});
});