From ce0a928a6cb5d4156b24797cef94280a5bf0cecb Mon Sep 17 00:00:00 2001 From: Daniel Que Date: Mon, 7 May 2018 11:20:12 -0700 Subject: [PATCH] Fix typos in ERC721BasicToken comments (#889) --- contracts/token/ERC721/ERC721BasicToken.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/token/ERC721/ERC721BasicToken.sol b/contracts/token/ERC721/ERC721BasicToken.sol index b7bcc8297..650ad594f 100644 --- a/contracts/token/ERC721/ERC721BasicToken.sol +++ b/contracts/token/ERC721/ERC721BasicToken.sol @@ -71,7 +71,7 @@ contract ERC721BasicToken is ERC721Basic { /** * @dev Returns whether the specified token exists - * @param _tokenId uint256 ID of the token to query the existance of + * @param _tokenId uint256 ID of the token to query the existence of * @return whether the token exists */ function exists(uint256 _tokenId) public view returns (bool) { @@ -101,7 +101,7 @@ contract ERC721BasicToken is ERC721Basic { /** * @dev Gets the approved address for a token ID, or zero if no address set * @param _tokenId uint256 ID of the token to query the approval of - * @return address currently approved for a the given token ID + * @return address currently approved for the given token ID */ function getApproved(uint256 _tokenId) public view returns (address) { return tokenApprovals[_tokenId];