From 9ba012005fb7a501bf6fc1c6341a4d5be2320248 Mon Sep 17 00:00:00 2001 From: ernestognw Date: Wed, 12 Jul 2023 20:28:50 -0600 Subject: [PATCH] Format _increaseBalance NatSpec --- contracts/token/ERC721/extensions/ERC721Votes.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC721/extensions/ERC721Votes.sol b/contracts/token/ERC721/extensions/ERC721Votes.sol index b7cc5020c..c851ad563 100644 --- a/contracts/token/ERC721/extensions/ERC721Votes.sol +++ b/contracts/token/ERC721/extensions/ERC721Votes.sol @@ -38,7 +38,7 @@ abstract contract ERC721Votes is ERC721, Votes { } /** - * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch + * @dev See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch. */ function _increaseBalance(address account, uint128 amount) internal virtual override { super._increaseBalance(account, amount);