File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
contracts/governance/extensions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments