From 5f430243a3ecfe6555ddd266b04ae27f2f2d9ac1 Mon Sep 17 00:00:00 2001 From: wojciech-turek Date: Mon, 15 Jul 2024 17:08:41 +0200 Subject: [PATCH] fix typo in packages/land/contracts/common/ERC721BaseToken.sol --- packages/land/contracts/common/ERC721BaseToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/land/contracts/common/ERC721BaseToken.sol b/packages/land/contracts/common/ERC721BaseToken.sol index 1466ec1737..4ac37558bb 100644 --- a/packages/land/contracts/common/ERC721BaseToken.sol +++ b/packages/land/contracts/common/ERC721BaseToken.sol @@ -334,7 +334,7 @@ abstract contract ERC721BaseToken is IERC721, IERC721BatchOps, IERC721Errors, IE /// @notice Subtract tokens to the owner balance /// @param who the owner of the token - /// @param val how much to add to the owner's balance + /// @param val how much to subtract from the owner's balance /// @dev we can use unchecked because there is a limited number of lands 408x408 function _subNumNFTPerAddress(address who, uint256 val) internal { unchecked {