diff --git a/ERCS/erc-7579.md b/ERCS/erc-7579.md index f7f997ee35..199130bf71 100644 --- a/ERCS/erc-7579.md +++ b/ERCS/erc-7579.md @@ -111,7 +111,7 @@ The account MUST encode the execution data the following ways: - For single calls, the `target`, `value` and `callData` are packed in this order (ie `abi.encodePacked` in Solidity). - For delegatecalls, the `target` and `callData` are packed in this order (ie `abi.encodePacked` in Solidity). -- For batch calls, the `targets`, `values` and `callDatas` are put into an array of `Exeuction` structs that includes these fields in this order (ie `Execution(address target, uint256 value, bytes memory callData)`). Then, this array is encoded with padding (ie `abi.encode` in Solidity). +- For batch calls, the `targets`, `values` and `callDatas` are put into an array of `Execution` structs that includes these fields in this order (ie `Execution(address target, uint256 value, bytes memory callData)`). Then, this array is encoded with padding (ie `abi.encode` in Solidity). #### Account configurations