Commit ce0a928a by Daniel Que Committed by Matt Condon

Fix typos in ERC721BasicToken comments (#889)

parent 85f079ee
...@@ -71,7 +71,7 @@ contract ERC721BasicToken is ERC721Basic { ...@@ -71,7 +71,7 @@ contract ERC721BasicToken is ERC721Basic {
/** /**
* @dev Returns whether the specified token exists * @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 * @return whether the token exists
*/ */
function exists(uint256 _tokenId) public view returns (bool) { function exists(uint256 _tokenId) public view returns (bool) {
...@@ -101,7 +101,7 @@ contract ERC721BasicToken is ERC721Basic { ...@@ -101,7 +101,7 @@ contract ERC721BasicToken is ERC721Basic {
/** /**
* @dev Gets the approved address for a token ID, or zero if no address set * @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 * @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) { function getApproved(uint256 _tokenId) public view returns (address) {
return tokenApprovals[_tokenId]; return tokenApprovals[_tokenId];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment