Skip to content

Commit

Permalink
chore: fix some comments
Browse files Browse the repository at this point in the history
Signed-off-by: suchsoon <silverjadebeauty@gmail.com>
  • Loading branch information
suchsoon authored and kanej committed Mar 26, 2024
1 parent 3f80e10 commit 00cca62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/edr_eth/src/access_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct AccessListItem {
/// Accessed address
pub address: Address,
/// Accessed storage keys
// In JSON, we have to accept null as well for storage key, but we don't want to to change the
// In JSON, we have to accept null as well for storage key, but we don't want to change the
// type to Option<Vec<_>> as that's invalid in RLP.
#[cfg_attr(
feature = "serde",
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-core/test/internal/solidity/resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ describe("Resolver", function () {
);
});

it("Should be local if its first directory exists in the project, even it it doesn't exist", async function () {
it("Should be local if its first directory exists in the project, even if it doesn't exist", async function () {
await expectHardhatErrorAsync(
() => resolver.resolveSourceName("contracts/non-existent.sol"),
ERRORS.RESOLVER.FILE_NOT_FOUND
Expand Down

0 comments on commit 00cca62

Please sign in to comment.