From 25fe191202c44c762bc2a933913e21b37200f0e9 Mon Sep 17 00:00:00 2001 From: matthiasgeihs <62935430+matthiasgeihs@users.noreply.github.com> Date: Tue, 25 Oct 2022 03:46:51 +0200 Subject: [PATCH] Fix comment in ERC721Consecutive (#3778) Co-authored-by: Francisco --- contracts/token/ERC721/extensions/ERC721Consecutive.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC721/extensions/ERC721Consecutive.sol b/contracts/token/ERC721/extensions/ERC721Consecutive.sol index 3a099a4df..e8e97aab6 100644 --- a/contracts/token/ERC721/extensions/ERC721Consecutive.sol +++ b/contracts/token/ERC721/extensions/ERC721Consecutive.sol @@ -73,7 +73,7 @@ abstract contract ERC721Consecutive is IERC2309, ERC721 { * - `batchSize` must not be greater than {_maxBatchSize}. * - The function is called in the constructor of the contract (directly or indirectly). * - * CAUTION: Does not emit a `Transfer` event. This is ERC721 compliant as long as it is done outside of the + * CAUTION: Does not emit a `Transfer` event. This is ERC721 compliant as long as it is done inside of the * constructor, which is enforced by this function. * * CAUTION: Does not invoke `onERC721Received` on the receiver.