From 0db97c9681f488cdd739c65d911636fc6accc72c Mon Sep 17 00:00:00 2001 From: Patrick Collins <54278053+PatrickAlphaC@users.noreply.github.com> Date: Mon, 18 Oct 2021 12:41:02 -0400 Subject: [PATCH] updated docs for governor votes, 0 is against not for (#2915) * updated docs for governor votes, 0 is against not for * Revert unecessary changelog entry Co-authored-by: Hadrien Croubois --- contracts/governance/IGovernor.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/governance/IGovernor.sol b/contracts/governance/IGovernor.sol index 90f4549395b..32fd4e6f7f2 100644 --- a/contracts/governance/IGovernor.sol +++ b/contracts/governance/IGovernor.sol @@ -73,7 +73,7 @@ abstract contract IGovernor is IERC165 { * * There are 2 standard keys: `support` and `quorum`. * - * - `support=bravo` refers to the vote options 0 = For, 1 = Against, 2 = Abstain, as in `GovernorBravo`. + * - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. * - `quorum=bravo` means that only For votes are counted towards quorum. * - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. *