From fd1e74aeac107820c6ab0138138582f3dc8c3653 Mon Sep 17 00:00:00 2001 From: Romashka Date: Tue, 24 Dec 2024 01:16:00 +0200 Subject: [PATCH] typo-Update Governance.sol --- src/starkware/solidity/components/Governance.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/starkware/solidity/components/Governance.sol b/src/starkware/solidity/components/Governance.sol index 247a5e26..10e697a5 100644 --- a/src/starkware/solidity/components/Governance.sol +++ b/src/starkware/solidity/components/Governance.sol @@ -40,7 +40,7 @@ abstract contract Governance is MGovernance { GovernanceInfoStruct storage gub = getGovernanceInfo(); require(!gub.initialized, "ALREADY_INITIALIZED"); gub.initialized = true; // to ensure acceptNewGovernor() won't fail. - // Add the initial governer. + // Add the initial governor. acceptNewGovernor(msg.sender); }