From bb25105a1c5b4b38bbc258679cc6456e04735da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Blanchemain?= Date: Thu, 7 May 2026 14:31:43 -0700 Subject: [PATCH] Fix typo in GetNativeTokenManagementFrom doc comment The function name is spelled "Management" but the doc comment had "Mangement". Aligns the comment with the function name. Co-Authored-By: Claude Opus 4.7 (1M context) --- precompiles/ArbOwnerPublic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precompiles/ArbOwnerPublic.go b/precompiles/ArbOwnerPublic.go index 97d8a81032d..b0860fac059 100644 --- a/precompiles/ArbOwnerPublic.go +++ b/precompiles/ArbOwnerPublic.go @@ -46,7 +46,7 @@ func (con ArbOwnerPublic) GetAllNativeTokenOwners(c ctx, evm mech) ([]common.Add return c.State.NativeTokenOwners().AllMembers(maxGetAllMembers) } -// GetNativeTokenMangementFrom returns the time in epoch seconds when the +// GetNativeTokenManagementFrom returns the time in epoch seconds when the // native token management becomes enabled func (con ArbOwnerPublic) GetNativeTokenManagementFrom(c ctx, evm mech) (uint64, error) { return c.State.NativeTokenManagementFromTime()