From 620417db05c654b6d72981b81772ef15fa0346d7 Mon Sep 17 00:00:00 2001 From: Harold Oliver <85371647+colonelxy@users.noreply.github.com> Date: Tue, 7 Mar 2023 14:35:53 +0300 Subject: [PATCH] Update LW3Punks.sol Simple typo edit --- hardhat-tutorial/contracts/LW3Punks.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardhat-tutorial/contracts/LW3Punks.sol b/hardhat-tutorial/contracts/LW3Punks.sol index e401dcc..2aacff5 100644 --- a/hardhat-tutorial/contracts/LW3Punks.sol +++ b/hardhat-tutorial/contracts/LW3Punks.sol @@ -40,7 +40,7 @@ contract LW3Punks is ERC721Enumerable, Ownable { } /** - * @dev mint allows an user to mint 1 NFT per transaction after the presale has ended. + * @dev mint allows a user to mint 1 NFT per transaction after the presale has ended. */ function mint() public payable onlyWhenNotPaused { require(tokenIds < maxTokenIds, "Exceed maximum LW3Punks supply"); @@ -95,4 +95,4 @@ contract LW3Punks is ERC721Enumerable, Ownable { // Fallback function is called when msg.data is not empty fallback() external payable {} -} \ No newline at end of file +}