diff --git a/script/DeployNewDAO.s.sol b/script/DeployNewDAO.s.sol index a70d431..6669988 100644 --- a/script/DeployNewDAO.s.sol +++ b/script/DeployNewDAO.s.sol @@ -73,7 +73,7 @@ contract SetupDaoScript is Script { IManager manager = IManager(_getKey("Manager")); manager.deploy(founders, tokenParams, auctionParams, govParams); - //now that we have a DAO process a proposal + //now that we have a DAO process as proposal vm.stopBroadcast(); } diff --git a/src/auction/Auction.sol b/src/auction/Auction.sol index 672c619..b32d7d2 100644 --- a/src/auction/Auction.sol +++ b/src/auction/Auction.sol @@ -41,7 +41,7 @@ contract Auction is IAuction, VersionedContract, UUPS, Ownable, ReentrancyGuard, /// IMMUTABLES /// /// /// - /// @notice Iniital time buffer for auction bids + /// @notice Initial time buffer for auction bids uint40 private immutable INITIAL_TIME_BUFFER = 5 minutes; /// @notice Min bid increment BPS @@ -93,7 +93,7 @@ contract Auction is IAuction, VersionedContract, UUPS, Ownable, ReentrancyGuard, /// @param _treasury The treasury address where ETH will be sent /// @param _duration The duration of each auction /// @param _reservePrice The reserve price of each auction - /// @param _founderRewardRecipient The address to recieve founders rewards + /// @param _founderRewardRecipient The address to receive founders rewards /// @param _founderRewardBps The percent of rewards a founder receives in BPS for each auction function initialize( address _token, diff --git a/src/auction/types/AuctionTypesV1.sol b/src/auction/types/AuctionTypesV1.sol index 136bd66..0b75a40 100644 --- a/src/auction/types/AuctionTypesV1.sol +++ b/src/auction/types/AuctionTypesV1.sol @@ -26,7 +26,7 @@ contract AuctionTypesV1 { /// @param highestBid The highest amount of ETH raised /// @param highestBidder The leading bidder /// @param startTime The timestamp the auction starts - /// @param endTime The timestamp the auction ends + /// @param endTime The timestamp at the auction ends /// @param settled If the auction has been settled struct Auction { uint256 tokenId; diff --git a/src/governance/governor/Governor.sol b/src/governance/governor/Governor.sol index 207ab09..07a2713 100644 --- a/src/governance/governor/Governor.sol +++ b/src/governance/governor/Governor.sol @@ -651,8 +651,8 @@ contract Governor is IGovernor, VersionedContract, UUPS, Ownable, EIP712, Propos revert INVALID_DELAYED_GOVERNANCE_EXPIRATION(); } - // Delay should only be set if no tokens have been minted to prevent active DAOs from accidentally or malicously enabling this funcationality - // Delay is only availible for DAOs that have reserved tokens + // Delay should only be set if no tokens have been minted to prevent active DAOs from accidentally or maliciously enabling this functionality + // Delay is only available for DAOs that have reserved tokens if (settings.token.totalSupply() > 0 || settings.token.reservedUntilTokenId() == 0) { revert CANNOT_DELAY_GOVERNANCE(); } diff --git a/src/governance/governor/IGovernor.sol b/src/governance/governor/IGovernor.sol index 679b105..3f7663f 100644 --- a/src/governance/governor/IGovernor.sol +++ b/src/governance/governor/IGovernor.sol @@ -304,7 +304,7 @@ interface IGovernor is IUUPS, IOwnable, IEIP712, GovernorTypesV1 { function updateDelayedGovernanceExpirationTimestamp(uint256 _newDelayedTimestamp) external; /// @notice Updates the vetoer - /// @param newVetoer The new vetoer addresss + /// @param newVetoer The new vetoer addresses function updateVetoer(address newVetoer) external; /// @notice Burns the vetoer