@@ -29,7 +29,7 @@ contract NFToken is
2929 string constant IS_OWNER = "003008 " ;
3030
3131 /**
32- * @dev Magic value of a smart contract that can recieve NFT.
32+ * @dev Magic value of a smart contract that can receive NFT.
3333 * Equal to: bytes4(keccak256("onERC721Received(address,address,uint256,bytes)")).
3434 */
3535 bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02 ;
@@ -159,7 +159,7 @@ contract NFToken is
159159 * address for this NFT. Throws if `_from` is not the current owner. Throws if `_to` is the zero
160160 * address. Throws if `_tokenId` is not a valid NFT. This function can be changed to payable.
161161 * @notice The caller is responsible to confirm that `_to` is capable of receiving NFTs or else
162- * they maybe be permanently lost.
162+ * they may be permanently lost.
163163 * @param _from The current owner of the NFT.
164164 * @param _to The new owner.
165165 * @param _tokenId The NFT to transfer.
@@ -241,8 +241,8 @@ contract NFToken is
241241 }
242242
243243 /**
244- * @dev Returns the address of the owner of the NFT. NFTs assigned to zero address are considered
245- * invalid, and queries about them do throw.
244+ * @dev Returns the address of the owner of the NFT. NFTs assigned to the zero address are
245+ * considered invalid, and queries about them do throw.
246246 * @param _tokenId The identifier for an NFT.
247247 * @return _owner Address of _tokenId owner.
248248 */
@@ -295,7 +295,7 @@ contract NFToken is
295295 }
296296
297297 /**
298- * @dev Actually preforms the transfer.
298+ * @dev Actually performs the transfer.
299299 * @notice Does NO checks.
300300 * @param _to Address of a new owner.
301301 * @param _tokenId The NFT that is being transferred.
@@ -362,7 +362,7 @@ contract NFToken is
362362 /**
363363 * @dev Removes a NFT from owner.
364364 * @notice Use and override this function with caution. Wrong usage can have serious consequences.
365- * @param _from Address from wich we want to remove the NFT.
365+ * @param _from Address from which we want to remove the NFT.
366366 * @param _tokenId Which NFT we want to remove.
367367 */
368368 function _removeNFToken (
@@ -378,9 +378,9 @@ contract NFToken is
378378 }
379379
380380 /**
381- * @dev Assignes a new NFT to owner.
381+ * @dev Assigns a new NFT to owner.
382382 * @notice Use and override this function with caution. Wrong usage can have serious consequences.
383- * @param _to Address to wich we want to add the NFT.
383+ * @param _to Address to which we want to add the NFT.
384384 * @param _tokenId Which NFT we want to add.
385385 */
386386 function _addNFToken (
@@ -398,7 +398,7 @@ contract NFToken is
398398
399399 /**
400400 * @dev Helper function that gets NFT count of owner. This is needed for overriding in enumerable
401- * extension to remove double storage (gas optimization) of owner nft count.
401+ * extension to remove double storage (gas optimization) of owner NFT count.
402402 * @param _owner Address for whom to query the count.
403403 * @return Number of _owner NFTs.
404404 */
0 commit comments