From 1c2be45ea7c049a39f44ee1a581f577c7b331d3f Mon Sep 17 00:00:00 2001 From: howydev <132113803+howydev@users.noreply.github.com> Date: Tue, 16 Jan 2024 11:52:47 -0500 Subject: [PATCH] style: improve docs for variables --- src/libraries/AccountStorageV1.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/AccountStorageV1.sol b/src/libraries/AccountStorageV1.sol index cded2f8c..4ff69490 100644 --- a/src/libraries/AccountStorageV1.sol +++ b/src/libraries/AccountStorageV1.sol @@ -20,9 +20,9 @@ contract AccountStorageV1 { mapping(address => PluginData) pluginData; // Execution functions and their associated functions mapping(bytes4 => SelectorData) selectorData; - // bytes24 key = address(calling plugin) || bytes4(selector of execution function) + // bytes24 key = address(calling plugin) | bytes4(selector of execution function) mapping(bytes24 => PermittedCallData) permittedCalls; - // key = address(calling plugin) || target address + // key = address(calling plugin) | target address mapping(IPlugin => mapping(address => PermittedExternalCallData)) permittedExternalCalls; // For ERC165 introspection, each count indicates support from account or an installed plugin // 0 indicate the account does not support the interface and all plugins that support this interface have