From 071ea4d0f27c8c891421c50037525754e38f378b Mon Sep 17 00:00:00 2001 From: Sam MacPherson Date: Tue, 27 Aug 2024 20:40:50 +0900 Subject: [PATCH] fix natspec in other location (#26) --- src/interfaces/IExecutor.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/IExecutor.sol b/src/interfaces/IExecutor.sol index 5041cea..df548e1 100644 --- a/src/interfaces/IExecutor.sol +++ b/src/interfaces/IExecutor.sol @@ -44,7 +44,7 @@ interface IExecutor is IAccessControl { * @notice This struct contains the data needed to execute a specified set of actions. * @param targets Array of targets to call. * @param values Array of values to pass in each call. - * @param signatures Array of function signatures to encode in each call (can be empty). + * @param signatures Array of function signatures to encode in each call by the actions which can be empty strings. * @param calldatas Array of calldatas to pass in each call, appended to the signature at the same array index if not empty. * @param withDelegateCalls Array of whether to delegatecall for each call. * @param executionTime Timestamp starting from which the actions set can be executed.