chore: fix typo in codebase (#11846)

This commit is contained in:
Huáng Jùnliàng
2020-07-16 17:01:20 -04:00
committed by GitHub
parent 02f30af59c
commit 8f191ead92
18 changed files with 22 additions and 22 deletions

View File

@@ -16,6 +16,6 @@ const obj = new Obj();
expect(() => {
obj.call();
// Asser that this throws, but that it's not
// Assert that this throws, but that it's not
// Obj.p.test's error that is thrown
}).toThrowError(TypeError)

View File

@@ -16,6 +16,6 @@ const obj = new Obj();
expect(() => {
obj.call();
// Asser that this throws, but that it's not
// Assert that this throws, but that it's not
// Obj.p.test's error that is thrown
}).toThrowError(TypeError)

View File

@@ -56,6 +56,6 @@ let Obj = /*#__PURE__*/function (_Base) {
const obj = new Obj();
expect(() => {
obj.call(); // Asser that this throws, but that it's not
obj.call(); // Assert that this throws, but that it's not
// Obj.p.test's error that is thrown
}).toThrowError(TypeError);

View File

@@ -19,6 +19,6 @@ const obj = new Obj();
expect(() => {
obj.call();
// Asser that this throws, but that it's not
// Assert that this throws, but that it's not
// a gobbledygook error that is thrown
}).toThrowError(TypeError)