From c0a7d0f704543525b367702bcdb33ff5bba0a46f Mon Sep 17 00:00:00 2001 From: dd0sxx Date: Tue, 9 Jan 2024 15:47:34 +0100 Subject: [PATCH] comments --- src/guards/set-role-holders/SetRoleHoldersGuard.sol | 2 +- src/guards/set-role-holders/SetRoleHoldersGuardFactory.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guards/set-role-holders/SetRoleHoldersGuard.sol b/src/guards/set-role-holders/SetRoleHoldersGuard.sol index 28b28ba8b..88c0c39e3 100644 --- a/src/guards/set-role-holders/SetRoleHoldersGuard.sol +++ b/src/guards/set-role-holders/SetRoleHoldersGuard.sol @@ -5,7 +5,7 @@ import {ILlamaActionGuard} from "src/interfaces/ILlamaActionGuard.sol"; import {LlamaUtils} from "src/lib/LlamaUtils.sol"; import {ActionInfo, RoleHolderData} from "src/lib/Structs.sol"; -/// @title Protected Set Role Holder Guard +/// @title Set Role Holders Guard /// @author Llama (devsdosomething@llama.xyz) /// @notice A guard that regulates which roles are allowed to set other roles. /// @dev This guard should be used to protect the `setRoleHolders` function in the `LlamaGovernanceScript` contract diff --git a/src/guards/set-role-holders/SetRoleHoldersGuardFactory.sol b/src/guards/set-role-holders/SetRoleHoldersGuardFactory.sol index ccd2a60c0..8c3e400b9 100644 --- a/src/guards/set-role-holders/SetRoleHoldersGuardFactory.sol +++ b/src/guards/set-role-holders/SetRoleHoldersGuardFactory.sol @@ -3,7 +3,7 @@ pragma solidity 0.8.19; import {SetRoleHoldersGuard} from "src/guards/set-role-holders/SetRoleHoldersGuard.sol"; -/// @title Protected Set Role Holder Guard Factory +/// @title Set Role Holders Guard Factory /// @author Llama (devsdosomething@llama.xyz) /// @notice A factory contract that deploys `SetRoleHoldersGuard` contracts. /// The `SetRoleHoldersGuard` contract is used to specify which roles are allowed to set other roles, by setting a guard