diff --git a/standard/ERCs/erc-6900.md b/standard/ERCs/erc-6900.md index 86c1d106..9f9de2ce 100644 --- a/standard/ERCs/erc-6900.md +++ b/standard/ERCs/erc-6900.md @@ -186,10 +186,9 @@ This prevents accidental misconfiguration or misuse of plugins (both installed a ```solidity interface IPluginExecutor { - /// @notice Execute a call from a plugin to another plugin, via an execution function installed on the account. - /// @dev Plugins are not allowed to call native functions on the account. Permissions must be granted to the - /// calling plugin for the call to go through. - /// @param data The calldata to send to the plugin. + /// @notice Execute a call from a plugin through the account. + /// @dev Permissions must be granted to the calling plugin for the call to go through. + /// @param data The calldata to send to the account. /// @return The return data from the call. function executeFromPlugin(bytes calldata data) external payable returns (bytes memory);