Cosmetic change, remove return name, thank you @nanolucas

This commit is contained in:
William Entriken 2018-03-07 13:50:12 -05:00 committed by GitHub
parent 19a5f63ea1
commit 39687dca04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -242,7 +242,7 @@ interface ERC721Enumerable /* is ERC721 */ {
/// @param _index A counter less than `balanceOf(_owner)`
/// @return The token identifier for the `_index`th NFT assigned to `_owner`,
/// (sort order not specified)
function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256 _tokenId);
function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256);
}
```