Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio committed Apr 4, 2024
1 parent fe0d47a commit 4e33700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ERC721ContractMetadata.sol
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ contract ERC721ContractMetadata is
revert CannotExceedMaxSupplyOfUint64(newMaxSupply);
}

// Ensure the max supply does not exceed the total minted.
// Ensure the max supply does not exceed the total supply.
if (newMaxSupply < totalSupply()) {
revert NewMaxSupplyCannotBeLessThenTotalSupply(
newMaxSupply,
Expand Down

0 comments on commit 4e33700

Please sign in to comment.