Skip to content

Commit

Permalink
Change natspec based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Mar 22, 2024
1 parent 71efb63 commit 2b0cf56
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/V3FactoryOwner.sol
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ contract V3FactoryOwner {
/// @param _pool The Uniswap v3 pool contract from which protocol fees are being collected.
/// @param _recipient The address to which collected protocol fees will be transferred.
/// @param _amount0Requested The amount0Requested param to forward to the pool's collectProtocol
/// method.
/// method. Its maximum value will be `protocolFees.token0 - 1`.
/// @param _amount1Requested The amount1Requested param to forward to the pool's collectProtocol
/// method.
/// method. Its maximum value will be `protocolFees.token1 - 1`.
/// @return _amount0 The amount0 fees collected, returned by the pool's collectProtocol method.
/// @return _amount1 The amount1 fees collected, returned by the pool's collectProtocol method.
/// @dev The `UniswapV3Pool` contract only allows claiming the total amount minus 1 wei or less
/// for each token. We highly recommend checking the documentation on `IUniswapV3PoolOwnerActions`
/// in order to learn more about forwarded params.
/// for each token. We highly recommend checking the source code of the `UniswapV3Pool` contract
/// in order to better understand the potential constraints of the forwarded params.
function claimFees(
IUniswapV3PoolOwnerActions _pool,
address _recipient,
Expand Down

0 comments on commit 2b0cf56

Please sign in to comment.