Skip to content

Commit

Permalink
style: improve docs for variables
Browse files Browse the repository at this point in the history
  • Loading branch information
howydev committed Jan 16, 2024
1 parent ac9c87f commit 1c2be45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libraries/AccountStorageV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1c2be45

Please sign in to comment.