From 279c97381fe480100aa2bae0a881fa94cf94ffa9 Mon Sep 17 00:00:00 2001 From: Splidge Date: Wed, 25 Aug 2021 09:36:40 +0100 Subject: [PATCH] spelling mistake in comments --- contracts/RCTreasury.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/RCTreasury.sol b/contracts/RCTreasury.sol index ad1eb15a..c8911f8f 100644 --- a/contracts/RCTreasury.sol +++ b/contracts/RCTreasury.sol @@ -287,7 +287,7 @@ contract RCTreasury is AccessControl, NativeMetaTransaction, IRCTreasury { ╚═════════════════════════════════╝*/ /// @dev uber owner required for upgrades /// @dev deploying and setting a new factory is effectively an upgrade - /// @dev this is seperate so owner so can be set to multisig, or burn address to relinquish upgrade ability + /// @dev this is separate so owner so can be set to multisig, or burn address to relinquish upgrade ability /// @dev ... while maintaining governance over other governance functions function setFactoryAddress(address _newFactory) @@ -506,7 +506,7 @@ contract RCTreasury is AccessControl, NativeMetaTransaction, IRCTreasury { marketBalance -= _amount; marketPot[_market] += _amount; totalMarketPots += _amount; - /// @dev return the amount just incase it was adjusted + /// @dev return the amount just in case it was adjusted return _amount; }