diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-08-16 01:55:48 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-08-17 08:32:16 +0800 |
commit | 8bce73dc679cb05353835d011b8e1dfcff7f4670 (patch) | |
tree | adc92957584ee92ba8da8e531ae24b701a908c57 /packages/contracts/src/2.0.0/tokens/ERC721Token | |
parent | c13f538400e0ef9e06a5ea52e174979a5cc82bdc (diff) | |
download | dexon-sol-tools-8bce73dc679cb05353835d011b8e1dfcff7f4670.tar.gz dexon-sol-tools-8bce73dc679cb05353835d011b8e1dfcff7f4670.tar.zst dexon-sol-tools-8bce73dc679cb05353835d011b8e1dfcff7f4670.zip |
Fix typos, run prettier, and allow anyone to call on DummyERC721Token
Diffstat (limited to 'packages/contracts/src/2.0.0/tokens/ERC721Token')
-rw-r--r-- | packages/contracts/src/2.0.0/tokens/ERC721Token/ERC721Token.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/contracts/src/2.0.0/tokens/ERC721Token/ERC721Token.sol b/packages/contracts/src/2.0.0/tokens/ERC721Token/ERC721Token.sol index 94e084731..530f080c0 100644 --- a/packages/contracts/src/2.0.0/tokens/ERC721Token/ERC721Token.sol +++ b/packages/contracts/src/2.0.0/tokens/ERC721Token/ERC721Token.sol @@ -45,7 +45,7 @@ contract ERC721Token is /// @notice Transfers the ownership of an NFT from one address to another address /// @dev Throws unless `msg.sender` is the current owner, an authorized - /// perator, or the approved address for this NFT. Throws if `_from` is + /// operator, or the approved address for this NFT. Throws if `_from` is /// not the current owner. Throws if `_to` is the zero address. Throws if /// `_tokenId` is not a valid NFT. When transfer is complete, this function /// checks if `_to` is a smart contract (code size > 0). If so, it calls |