From a904854fdeebb280c13c1e9a35e1002a36a5045e Mon Sep 17 00:00:00 2001 From: Vectorized Date: Tue, 24 Dec 2024 21:37:25 +0000 Subject: [PATCH] ERC721 natspec nit --- src/tokens/ERC721.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokens/ERC721.sol b/src/tokens/ERC721.sol index dbb5b7f15c..d155896242 100644 --- a/src/tokens/ERC721.sol +++ b/src/tokens/ERC721.sol @@ -19,7 +19,7 @@ pragma solidity ^0.8.4; /// the balance of an owner MUST always be equal to their number of ownership slots. /// The transfer functions do not have an underflow guard for user token balances. /// - Make sure all variables written to storage are properly cleaned -// (e.g. the bool value for `isApprovedForAll` MUST be either 1 or 0 under the hood). +/// (e.g. the bool value for `isApprovedForAll` MUST be either 1 or 0 under the hood). /// - Check that the overridden function is actually used in the function you want to /// change the behavior of. Much of the code has been manually inlined for performance. abstract contract ERC721 {