diff --git a/src/auction/Auction.sol b/src/auction/Auction.sol index 672c619..11c3200 100644 --- a/src/auction/Auction.sol +++ b/src/auction/Auction.sol @@ -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/token/Token.sol b/src/token/Token.sol index 699cdb4..1d8a72f 100644 --- a/src/token/Token.sol +++ b/src/token/Token.sol @@ -157,7 +157,7 @@ contract Token is IToken, VersionedContract, UUPS, Ownable, ReentrancyGuard, ERC // Compute the vesting schedule uint256 schedule = 100 / founderPct; - // Used to store the base token id the founder will recieve + // Used to store the base token id the founder will receive uint256 baseTokenId = 0; // For each token to vest: