Skip to content

Commit

Permalink
Normalize return variable names in IERC721Enumerable (#3079)
Browse files Browse the repository at this point in the history
* Name missing return variable in IERC721Enumerable

For consistency among all functions.

* remove return variable names
  • Loading branch information
martriay authored Jan 7, 2022
1 parent a65c03b commit 828fe36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/token/ERC721/extensions/IERC721Enumerable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface IERC721Enumerable is IERC721 {
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
Expand Down

0 comments on commit 828fe36

Please sign in to comment.