From 904d3afa51035e0de1be50f7f0f3b34d188d5430 Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Sat, 20 Dec 2025 17:37:23 +0100 Subject: [PATCH] Update StdStorage.t.sol --- test/StdStorage.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/StdStorage.t.sol b/test/StdStorage.t.sol index b6e88add..274c7ec1 100644 --- a/test/StdStorage.t.sol +++ b/test/StdStorage.t.sol @@ -258,7 +258,7 @@ contract StdStorageTest is Test { function testFuzz_Packed(uint256 val, uint8 elemToGet) public { // This function tries an assortment of packed slots, shifts meaning number of elements - // that are packed. Shiftsizes are the size of each element, i.e. 8 means a data type that is 8 bits, 16 == 16 bits, etc. + // that are packed. Shift sizes are the size of each element, i.e. 8 means a data type that is 8 bits, 16 == 16 bits, etc. // Combined, these determine how a slot is packed. Making it random is too hard to avoid global rejection limit // and make it performant.