Skip to content

Commit

Permalink
docs: fix parameter comment in CollectProtocol event
Browse files Browse the repository at this point in the history
- Fix incorrect parameter documentation in IUniswapV3PoolEvents.sol
- Change duplicated @param amount0 to @param amount1
  • Loading branch information
Caplost committed Dec 17, 2024
1 parent d8b1c63 commit 9879b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/interfaces/pool/IUniswapV3PoolEvents.sol
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ interface IUniswapV3PoolEvents {
/// @param sender The address that collects the protocol fees
/// @param recipient The address that receives the collected protocol fees
/// @param amount0 The amount of token0 protocol fees that is withdrawn
/// @param amount0 The amount of token1 protocol fees that is withdrawn
/// @param amount1 The amount of token1 protocol fees that is withdrawn
event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

0 comments on commit 9879b56

Please sign in to comment.