From 65b7e515a2a8bcb6b6530d2ea5b403ff4ef17523 Mon Sep 17 00:00:00 2001 From: Bill Hsu Date: Tue, 12 Jan 2021 03:43:45 +0800 Subject: [PATCH] Align comments (#2458) --- contracts/token/ERC721/IERC721.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/token/ERC721/IERC721.sol b/contracts/token/ERC721/IERC721.sol index 72a81c6d6..787afde6f 100644 --- a/contracts/token/ERC721/IERC721.sol +++ b/contracts/token/ERC721/IERC721.sol @@ -117,8 +117,8 @@ interface IERC721 is IERC165 { * * Requirements: * - * - `from` cannot be the zero address. - * - `to` cannot be the zero address. + * - `from` cannot be the zero address. + * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.