File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ require("should");
4
4
const packageJSON = require ( "../package.json" ) ;
5
5
const MultiStats = require ( "../lib/MultiStats" ) ;
6
6
7
- const createStat = overides => {
7
+ const createStat = overrides => {
8
8
return Object . assign (
9
9
{
10
10
hash : "foo" ,
@@ -21,10 +21,10 @@ const createStat = overides => {
21
21
warnings : [ ] ,
22
22
errors : [ ]
23
23
} ,
24
- overides
24
+ overrides
25
25
)
26
26
} ,
27
- overides
27
+ overrides
28
28
) ;
29
29
} ;
30
30
Original file line number Diff line number Diff line change 2
2
3
3
const should = require ( "should" ) ;
4
4
const compareLocations = require ( "../lib/compareLocations" ) ;
5
- const createPosition = function ( overides ) {
5
+ const createPosition = function ( overrides ) {
6
6
return Object . assign (
7
7
{
8
8
line : 10 ,
9
9
column : 5
10
10
} ,
11
- overides
11
+ overrides
12
12
) ;
13
13
} ;
14
14
You can’t perform that action at this time.
0 commit comments