From 330e6741acf58a6d8ddf256629422884777c3188 Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Mon, 11 Aug 2025 16:09:38 +0300 Subject: [PATCH 1/2] Update ArrayLength.t.sol --- e2e/packages/contracts/test/ArrayLength.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { From 1bcb420f0403d38419b2ad6c766ce383b42df9be Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Mon, 11 Aug 2025 16:12:48 +0300 Subject: [PATCH 2/2] Update utils.ts --- e2e/packages/sync-test/data/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.