Skip to content

Commit

Permalink
fix: typo in code comment (#732)
Browse files Browse the repository at this point in the history
  • Loading branch information
dghelm authored Feb 28, 2023
1 parent 98db500 commit 026c944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/network/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class Network extends Connector {
if (Array.isArray(urls)) {
accumulator[Number(chainId)] = urls
} else {
// thie ternary just makes typescript happy, since it can't infer that the array has elements of the same type
// this ternary just makes typescript happy, since it can't infer that the array has elements of the same type
accumulator[Number(chainId)] = isUrl(urls) ? [urls] : [urls]
}

Expand Down

0 comments on commit 026c944

Please sign in to comment.