aboutsummaryrefslogtreecommitdiff
path: root/test/support/chai.js
diff options
context:
space:
mode:
authorMarak <[email protected]>2021-10-19 14:53:16 -0400
committerGitHub <[email protected]>2021-10-19 14:53:16 -0400
commit29234378807c4141588861f69421bf20b5ac635e (patch)
treed44314518a7c801a546c49334c86fbd357b6142b /test/support/chai.js
parent282aae9e913861cd12e41e3a569f462143bf8ee5 (diff)
parent6669bcd6e3b8008fac786d54c5ccfc4fefa74769 (diff)
downloadfaker-6.0.0-alpha.0.tar.xz
faker-6.0.0-alpha.0.zip
Merge pull request #1217 from jsoref/spelling6.0.0-alpha.0
Spelling
Diffstat (limited to 'test/support/chai.js')
-rw-r--r--test/support/chai.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/support/chai.js b/test/support/chai.js
index 43fbf644..fac55c78 100644
--- a/test/support/chai.js
+++ b/test/support/chai.js
@@ -325,7 +325,7 @@ Assertion.addChainableMethod('contain', include, includeChainingBehavior);
*
* 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;
@@ -2652,7 +2652,7 @@ require.register("utils/getMessage.js", function(module, exports, require){
*/
/*!
- * Module dependancies
+ * Module dependencies
*/
var flag = require('./flag')
@@ -2666,7 +2666,7 @@ var flag = require('./flag')
* and template tags. Template tags will return
* a stringified inspection of the object referenced.
*
- * Messsage template tags:
+ * Message template tags:
* - `#{this}` current asserted object
* - `#{act}` actual value
* - `#{exp}` expected value
@@ -3217,7 +3217,7 @@ require.register("utils/overwriteMethod.js", function(module, exports, require){
/**
* ### overwriteMethod (ctx, name, fn)
*
- * Overwites an already existing method and provides
+ * Overwrites an already existing method and provides
* access to previous function. Must return function
* to be used for name.
*
@@ -3272,7 +3272,7 @@ require.register("utils/overwriteProperty.js", function(module, exports, require
/**
* ### overwriteProperty (ctx, name, fn)
*
- * Overwites an already existing property getter and provides
+ * Overwrites an already existing property getter and provides
* access to previous value. Must return function to use as getter.
*
* utils.overwriteProperty(chai.Assertion.prototype, 'ok', function (_super) {
@@ -3328,7 +3328,7 @@ require.register("utils/test.js", function(module, exports, require){
*/
/*!
- * Module dependancies
+ * Module dependencies
*/
var flag = require('./flag');
@@ -3369,7 +3369,7 @@ require.register("utils/transferFlags.js", function(module, exports, require){
* var newAssertion = new Assertion();
* utils.transferFlags(assertion, newAssertion);
*
- * var anotherAsseriton = new Assertion(myObj);
+ * var anotherAssertion = new Assertion(myObj);
* utils.transferFlags(assertion, anotherAssertion, false);
*
* @param {Assertion} assertion the assertion to transfer the flags from