From c8369d483cd1621bfbfb3f48bf83cc80e4af20d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Gonz=C3=A1lez?= Date: Fri, 1 Mar 2024 16:49:25 +0100 Subject: [PATCH] Fix typo in ERC721Utils.sol (#4938) --- contracts/token/ERC721/utils/ERC721Utils.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC721/utils/ERC721Utils.sol b/contracts/token/ERC721/utils/ERC721Utils.sol index b923e4037..43dd107b2 100644 --- a/contracts/token/ERC721/utils/ERC721Utils.sol +++ b/contracts/token/ERC721/utils/ERC721Utils.sol @@ -15,7 +15,7 @@ library ERC721Utils { * @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received} * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`). * - * The acceptance call is not executed and treated as a no-op if the target address is doesn't contain code (i.e. an EOA). + * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA). * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept * the transfer. */