Spelling: Fix spelling errors

* equal
* existence
* expectation
* expected
* intend
* message
* report
* singular
This commit is contained in:
Josh Soref
2013-10-30 15:14:11 -04:00
parent a2debf60b6
commit c7e3ca6c8a
7 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
describe("matchersUtil", function() {
describe("equals", function() {
it("passes for literals that are threequal", function() {
it("passes for literals that are tripple-equal", function() {
expect(j$.matchersUtil.equals(null, null)).toBe(true);
expect(j$.matchersUtil.equals(void 0, void 0)).toBe(true);
});

View File

@@ -246,7 +246,7 @@ describe("toThrowError", function() {
expect(result.message).toEqual("Expected function to throw TypeError with message \"bar\", but it threw TypeError with message \"foo\".");
});
it("passes if thrown is a type of Error and has the same type as the expected Error and the message matches the exepcted message", function() {
it("passes if thrown is a type of Error and has the same type as the expected Error and the message matches the expected message", function() {
var util = {
equals: jasmine.createSpy('delegated-equal').and.returnValue(true)
},