Skip to content

Commit 8998c73

Browse files
docs: fix super quorum fraction NatSpec (#6205)
1 parent f6c3421 commit 8998c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/governance/extensions/GovernorVotesSuperQuorumFraction.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ abstract contract GovernorVotesSuperQuorumFraction is GovernorVotesQuorumFractio
2828
error GovernorInvalidSuperQuorumFraction(uint256 superQuorumNumerator, uint256 denominator);
2929

3030
/**
31-
* @dev The super quorum set is not valid as it is smaller or equal to the quorum.
31+
* @dev The super quorum set is not valid as it is smaller than the quorum.
3232
*/
3333
error GovernorInvalidSuperQuorumTooSmall(uint256 superQuorumNumerator, uint256 quorumNumerator);
3434

@@ -41,7 +41,7 @@ abstract contract GovernorVotesSuperQuorumFraction is GovernorVotesQuorumFractio
4141
* @dev Initialize super quorum as a fraction of the token's total supply.
4242
*
4343
* The super quorum is specified as a fraction of the token's total supply and has to
44-
* be greater than the quorum.
44+
* be greater than or equal to the quorum.
4545
*/
4646
constructor(uint256 superQuorumNumeratorValue) {
4747
_updateSuperQuorumNumerator(superQuorumNumeratorValue);

0 commit comments

Comments
 (0)