diff --git a/e2e/packages/contracts/test/ArrayLength.t.sol b/e2e/packages/contracts/test/ArrayLength.t.sol index fa65962d69..a5cb162544 100644 --- a/e2e/packages/contracts/test/ArrayLength.t.sol +++ b/e2e/packages/contracts/test/ArrayLength.t.sol @@ -14,7 +14,7 @@ import { toStaticArray_uint256_3 } from "../src/codegen/tables/StaticArray.sol"; /** * @title GetItemValueWrapper * @dev For testing that calling getItemValue properly reverts - * We use a seperate contract to ensure `expectRevert` does not only check the first external call + * We use a separate contract to ensure `expectRevert` does not only check the first external call */ contract GetItemValueWrapper { function getItemValue(address worldAddress, uint256 _index) public { diff --git a/e2e/packages/sync-test/data/utils.ts b/e2e/packages/sync-test/data/utils.ts index 8098ace152..a84228b1ec 100644 --- a/e2e/packages/sync-test/data/utils.ts +++ b/e2e/packages/sync-test/data/utils.ts @@ -13,7 +13,7 @@ export function serialize(obj: unknown): string { export function deserialize(blob: string): Record { const obj = JSON.parse(blob); - // Check whether the value matches the mattern `bigint(${number}n)` + // Check whether the value matches the pattern `bigint(${number}n)` // (serialization of bigint in `serialize`) // and turn it back into a bigint const regex = /^bigint\((-?\d+)\)$/; // Regular expression pattern.