From 1add7b8893dfa5c3a3e98832ae47cab9364421a7 Mon Sep 17 00:00:00 2001 From: Rohan Kulkarni Date: Tue, 27 Jun 2023 12:54:29 -0400 Subject: [PATCH] style: update natspec --- src/ERC721Drop.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ERC721Drop.sol b/src/ERC721Drop.sol index c95e6c3..d12b5c1 100644 --- a/src/ERC721Drop.sol +++ b/src/ERC721Drop.sol @@ -466,10 +466,10 @@ contract ERC721Drop is return _handlePurchase(msg.sender, quantity, comment); } - /// @notice Purchase a quantity of tokens to a specified recipient, with a comment + /// @notice Purchase a quantity of tokens to a specified recipient, with an optional comment /// @param recipient recipient of the tokens /// @param quantity quantity to purchase - /// @param comment comment to include in the IERC721Drop.Sale event + /// @param comment optional comment to include in the IERC721Drop.Sale event (leave blank for no comment) /// @return tokenId of the first token minted function purchaseWithRecipient(address recipient, uint256 quantity, string calldata comment) external