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");
44const packageJSON = require ( "../package.json" ) ;
55const 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
Original file line number Diff line number Diff line change 22
33const should = require ( "should" ) ;
44const 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
You can’t perform that action at this time.
0 commit comments