From d18df70f3f7a957437bf5403e1fd6574e974228a Mon Sep 17 00:00:00 2001 From: Zentex Date: Tue, 3 Feb 2026 22:41:24 +0530 Subject: [PATCH] Fix typos in FastSwitchboard.sol: seperately -> separately, bacause -> because, boorstrapping -> bootstrapping --- .../switchboard/default-switchboards/FastSwitchboard.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/switchboard/default-switchboards/FastSwitchboard.sol b/contracts/switchboard/default-switchboards/FastSwitchboard.sol index cb6e62365..9ccac4b01 100644 --- a/contracts/switchboard/default-switchboards/FastSwitchboard.sol +++ b/contracts/switchboard/default-switchboards/FastSwitchboard.sol @@ -48,7 +48,7 @@ contract FastSwitchboard is SwitchboardBase { error AlreadyAttested(); // Error emitted if grant/revoke is tried for watcher role using generic grant/revoke functions. - // Watcher role is handled seperately bacause totalWatchers and fees need to be updated along with role change. + // Watcher role is handled separately because totalWatchers and fees need to be updated along with role change. error InvalidRole(); // Error emitted while attesting if root is zero or it doesnt match the root on socket for given proposal @@ -228,7 +228,7 @@ contract FastSwitchboard is SwitchboardBase { Fees storage fees = fees[srcChainSlug_]; uint128 watchersBefore = uint128(totalWatchers[srcChainSlug_]); - // edge case handled by calling setFees function after boorstrapping is done. + // edge case handled by calling setFees function after bootstrapping is done. if (watchersBefore != 0 && fees.switchboardFees != 0) fees.switchboardFees = (fees.switchboardFees * (watchersBefore + 1)) /