From 83382098dc52942565e9bdbe44d554abbed1ca80 Mon Sep 17 00:00:00 2001 From: Ricky McAlister Date: Sat, 11 Jan 2025 10:39:24 +1100 Subject: [PATCH] Fix: Corrected @param typos in NatSpec comments --- contracts/access/MintingAccessControl.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/access/MintingAccessControl.sol b/contracts/access/MintingAccessControl.sol index 569c95e9..eb73b82b 100644 --- a/contracts/access/MintingAccessControl.sol +++ b/contracts/access/MintingAccessControl.sol @@ -10,7 +10,7 @@ abstract contract MintingAccessControl is AccessControlEnumerable { /** * @notice Allows admin grant `user` `MINTER` role - * @param user The address to grant the `MINTER` role to + * @param user The address to grant the `MINTER` role to */ function grantMinterRole(address user) public onlyRole(DEFAULT_ADMIN_ROLE) { grantRole(MINTER_ROLE, user); @@ -18,7 +18,7 @@ abstract contract MintingAccessControl is AccessControlEnumerable { /** * @notice Allows admin to revoke `MINTER_ROLE` role from `user` - * @param user The address to revoke the `MINTER` role from + * @param user The address to revoke the `MINTER` role from */ function revokeMinterRole(address user) public onlyRole(DEFAULT_ADMIN_ROLE) { revokeRole(MINTER_ROLE, user);