From a81b07ce910b288886faf28453a1575094e65298 Mon Sep 17 00:00:00 2001 From: Harsh Vakharia <2311316+harshjv@users.noreply.github.com> Date: Mon, 31 Jan 2022 15:17:56 +0530 Subject: [PATCH] Fix typo in retrieval of onERC721Received selector (#3151) --- contracts/token/ERC721/IERC721Receiver.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC721/IERC721Receiver.sol b/contracts/token/ERC721/IERC721Receiver.sol index a42cb52ff..298e3565f 100644 --- a/contracts/token/ERC721/IERC721Receiver.sol +++ b/contracts/token/ERC721/IERC721Receiver.sol @@ -16,7 +16,7 @@ interface IERC721Receiver { * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * - * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. + * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator,