Skip to content

Commit

Permalink
Fix doc comments related to getting votes
Browse files Browse the repository at this point in the history
  • Loading branch information
apbendi committed Feb 15, 2022
1 parent 2959ba6 commit 5a905ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/governance/Governor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import "./IGovernor.sol";
* This contract is abstract and requires several function to be implemented in various modules:
*
* - A counting module must implement {quorum}, {_quorumReached}, {_voteSucceeded} and {_countVote}
* - A voting module must implement {getVotes}
* - A voting module must implement {_getVotes}
* - Additionanly, the {votingPeriod} must also be implemented
*
* _Available since v4.3._
Expand Down Expand Up @@ -186,7 +186,7 @@ abstract contract Governor is Context, ERC165, EIP712, IGovernor {
function _voteSucceeded(uint256 proposalId) internal view virtual returns (bool);

/**
* @dev Check the voting weight of an account.
* @dev Get the voting weight of `account` at a specific `blockNumber`, for a vote as described by `params`.
*/
function _getVotes(
address account,
Expand Down

0 comments on commit 5a905ad

Please sign in to comment.