From 47e16b4baf1d7355af5dbc08eaba2ad3af537241 Mon Sep 17 00:00:00 2001 From: "C. Brown" Date: Mon, 19 Mar 2018 19:19:08 -0500 Subject: [PATCH] Update eip-721 natspec --- EIPS/eip-721.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index 7f0bbc43..24482ce6 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -73,9 +73,9 @@ interface ERC721 /* is ERC165 */ { function balanceOf(address _owner) external view returns (uint256); /// @notice Find the owner of an NFT - /// @param _tokenId The identifier for an NFT /// @dev NFTs assigned to zero address are considered invalid, and queries /// about them do throw. + /// @param _tokenId The identifier for an NFT /// @return The address of the owner of the NFT function ownerOf(uint256 _tokenId) external view returns (address);