Skip to content

Commit

Permalink
Merge pull request #17 from Chalin-Shi/master
Browse files Browse the repository at this point in the history
🐛 fix type of 2d array bug
  • Loading branch information
hsluoyz authored Aug 19, 2018
2 parents aeb804f + f9dbf50 commit 8fa4503
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 8fa4503

Please sign in to comment.