Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes spelling error "everthing" -> "everything" #522

Merged
merged 1 commit into from
Sep 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions chai.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ module.exports = function (chai, _) {
*
* Asserts that the target is truthy.
*
* expect('everthing').to.be.ok;
* expect('everything').to.be.ok;
* expect(1).to.be.ok;
* expect(false).to.not.be.ok;
* expect(undefined).to.not.be.ok;
Expand Down Expand Up @@ -5732,4 +5732,4 @@ Library.prototype.test = function(obj, type) {
};

},{}]},{},[1])(1)
});
});
2 changes: 1 addition & 1 deletion lib/chai/core/assertions.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ module.exports = function (chai, _) {
*
* Asserts that the target is truthy.
*
* expect('everthing').to.be.ok;
* expect('everything').to.be.ok;
* expect(1).to.be.ok;
* expect(false).to.not.be.ok;
* expect(undefined).to.not.be.ok;
Expand Down