Skip to content

Commit 5a87474

Browse files
committed
comment
1 parent c986aa5 commit 5a87474

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Orders.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ struct Output {
3030
/// @notice Contract capable of processing fulfillment of intent-based Orders.
3131
abstract contract OrderDestination {
3232
/// @notice Emitted when Order Outputs are sent to their recipients.
33-
/// @param outputs - The Outputs transferred to their recipients
3433
/// @dev NOTE that here, Output.chainId denotes the *origin* chainId.
3534
event Filled(Output[] outputs);
3635

3736
/// @notice Send the Output(s) of any number of Orders.
3837
/// The user calls `initiate` on a rollup; the Builder calls `fill` on the target chain aggregating Outputs.
39-
/// @param outputs - The Outputs to be transferred.
38+
/// Builder may aggregate multiple Outputs with the same (`chainId`, `recipient`, `token`) into a single Output with the summed `amount`.
4039
/// @dev NOTE that here, Output.chainId denotes the *origin* chainId.
40+
/// @param outputs - The Outputs to be transferred.
4141
/// @custom:emits Filled
4242
function fill(Output[] memory outputs) external payable {
4343
// transfer outputs

0 commit comments

Comments
 (0)