Skip to content

Commit c5c76e1

Browse files
committed
chore: fix some minor issues in the comments
Signed-off-by: pennylees <[email protected]>
1 parent d250714 commit c5c76e1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bench/fixture.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export class BenchFixture {
300300
};
301301
break;
302302
default:
303-
throw new Error("unreacheable");
303+
throw new Error("unreachable");
304304
}
305305
const signingScheme =
306306
(i + Math.floor(i / 4)) % 2 == 0

hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default {
166166
},
167167
},
168168
namedAccounts: {
169-
// Note: accounts defined by a number refer to the the accounts as configured
169+
// Note: accounts defined by a number refer to the accounts as configured
170170
// by the current network.
171171
deployer: 0,
172172
owner: {

src/ts/sign.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const EIP1271_MAGICVALUE = ethers.utils.hexDataSlice(
3030
export enum SigningScheme {
3131
/**
3232
* The EIP-712 typed data signing scheme. This is the preferred scheme as it
33-
* provides more infomation to wallets performing the signature on the data
33+
* provides more information to wallets performing the signature on the data
3434
* being signed.
3535
*
3636
* <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator>

test/libraries/Bytecode.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ library Bytecode {
3333
revert("Every immutable is expected to have at least a reference entry");
3434
}
3535

36-
// Only interested in the first occurence of the ith immutable reference
36+
// Only interested in the first occurrence of the ith immutable reference
3737
ImmutableReference memory r = jsonImmutables[0];
3838
immutables[i] = which.code.slice(r.start, r.length);
3939
}

0 commit comments

Comments
 (0)