From a7bfb248d327d08016617606e0cf7edd315bdf64 Mon Sep 17 00:00:00 2001 From: Mark Toda Date: Fri, 18 Oct 2024 14:33:26 -0700 Subject: [PATCH] fix: typo --- src/libraries/VanityAddressLib.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/VanityAddressLib.sol b/src/libraries/VanityAddressLib.sol index 37ad9b4b..d1973305 100644 --- a/src/libraries/VanityAddressLib.sol +++ b/src/libraries/VanityAddressLib.sol @@ -33,7 +33,7 @@ library VanityAddressLib { uint256 leadingZeroCount = getLeadingNibbleCount(addrBytes, 0, 0); calculatedScore += (leadingZeroCount * 10); - // special handling for 4s immediatley after leading 0s + // special handling for 4s immediately after leading 0s uint256 leadingFourCount = getLeadingNibbleCount(addrBytes, leadingZeroCount, 4); // If the first nonzero nibble is not 4, return 0 if (leadingFourCount == 0) {