Skip to content

Commit

Permalink
🐛 fix type of 2d array bug
Browse files Browse the repository at this point in the history
  • Loading branch information
snowliy committed Aug 19, 2018
1 parent b84f789 commit f9dbf50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function arrayEquals(a: string[], b: string[]): boolean {
}

// array2DEquals determines whether two 2-dimensional string arrays are identical.
function array2DEquals(a: [string[]], b: [string[]]): boolean {
function array2DEquals(a: string[][], b: string[][]): boolean {
return _.isEqual(a, b);
}

Expand Down

0 comments on commit f9dbf50

Please sign in to comment.