From 7460c8b2b4307b3b074427e2dd030151e972ad9b Mon Sep 17 00:00:00 2001 From: Eridian <86061486+EridianAlpha@users.noreply.github.com> Date: Fri, 21 Jun 2024 14:17:29 +0100 Subject: [PATCH] Fix param name --- src/AavePM.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AavePM.sol b/src/AavePM.sol index 7d7fe28..e1e1caa 100644 --- a/src/AavePM.sol +++ b/src/AavePM.sol @@ -981,7 +981,7 @@ contract AavePM is /// @notice Renounce a role from an account. /// @dev Caller must have the role. /// @param role The role to renounce in a bytes32 format keccak256("ROLE_NAME"). - /// @param account The account to renounce the role from. + /// @param callerConfirmation The account to renounce the role from. function renounceRole(bytes32 role, address callerConfirmation) public override(IAavePM, IAccessControl, AccessControlUpgradeable)