Skip to content

Commit

Permalink
chore: comment clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomariscal committed Dec 17, 2024
1 parent 2d37a6e commit ec8c0db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion l2-contracts/src/ZkCappedMinterV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ contract ZkCappedMinterV2 is AccessControl, Pausable {
error ZkCappedMinterV2__InvalidTime();

/// @notice Constructor for a new ZkCappedMinterV2 contract
/// @param _mintable The token or contract where tokens will be minted.
/// @param _mintable The contract where tokens will be minted.
/// @param _admin The address that will be granted the admin role.
/// @param _cap The maximum number of tokens that may be minted by the ZkCappedMinter.
/// @param _startTime The timestamp when minting can begin.
Expand Down
6 changes: 3 additions & 3 deletions l2-contracts/src/ZkCappedMinterV2Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract ZkCappedMinterV2Factory {

/// @notice Emitted when a new ZkCappedMinterV2 is created.
/// @param minterAddress The address of the newly deployed ZkCappedMinterV2.
/// @param mintable The token or contract where tokens will be minted.
/// @param mintable The contract where tokens will be minted.
/// @param admin The address authorized to mint tokens.
/// @param cap The maximum number of tokens that may be minted.
/// @param startTime The timestamp when minting can begin.
Expand All @@ -34,7 +34,7 @@ contract ZkCappedMinterV2Factory {
);

/// @notice Deploys a new ZkCappedMinterV2 contract using CREATE2.
/// @param _mintable The token or contract where tokens will be minted.
/// @param _mintable The contract where tokens will be minted.
/// @param _admin The address authorized to mint tokens.
/// @param _cap The maximum number of tokens that may be minted.
/// @param _startTime The timestamp when minting can begin.
Expand All @@ -58,7 +58,7 @@ contract ZkCappedMinterV2Factory {
}

/// @notice Computes the address of a ZkCappedMinterV2 deployed via this factory.
/// @param _mintable The token or contract where tokens will be minted.
/// @param _mintable The contract where tokens will be minted.
/// @param _admin The address authorized to mint tokens.
/// @param _cap The maximum number of tokens that may be minted.
/// @param _startTime The timestamp when minting can begin.
Expand Down

0 comments on commit ec8c0db

Please sign in to comment.