Skip to content

Commit 159299c

Browse files
committed
spelling: overrides
1 parent c1ccdbe commit 159299c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/MultiStats.unittest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require("should");
44
const packageJSON = require("../package.json");
55
const MultiStats = require("../lib/MultiStats");
66

7-
const createStat = overides => {
7+
const createStat = overrides => {
88
return Object.assign(
99
{
1010
hash: "foo",
@@ -21,10 +21,10 @@ const createStat = overides => {
2121
warnings: [],
2222
errors: []
2323
},
24-
overides
24+
overrides
2525
)
2626
},
27-
overides
27+
overrides
2828
);
2929
};
3030

test/compareLocations.unittest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
const should = require("should");
44
const compareLocations = require("../lib/compareLocations");
5-
const createPosition = function(overides) {
5+
const createPosition = function(overrides) {
66
return Object.assign(
77
{
88
line: 10,
99
column: 5
1010
},
11-
overides
11+
overrides
1212
);
1313
};
1414

0 commit comments

Comments
 (0)