diff --git a/contracts/interfaces/IQuoter.sol b/contracts/interfaces/IQuoter.sol index 002e2c93..a25fb03a 100644 --- a/contracts/interfaces/IQuoter.sol +++ b/contracts/interfaces/IQuoter.sol @@ -60,7 +60,7 @@ interface IQuoter { /// @param params The params for the quote, encoded as `QuoteExactInputSingleParams` /// poolKey The key for identifying a V4 pool /// zeroForOne If the swap is from currency0 to currency1 - /// recipient The indented recipient of the output tokens + /// recipient The intended recipient of the output tokens /// amountIn The desired input amount /// sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap /// hookData arbitrary hookData to pass into the associated hooks @@ -75,7 +75,7 @@ interface IQuoter { /// @param params the params for the quote, encoded as 'QuoteExactInputParams' /// currencyIn The input currency of the swap /// path The path of the swap encoded as PathKeys that contains currency, fee, tickSpacing, and hook info - /// recipient The indented recipient of the output tokens + /// recipient The intended recipient of the output tokens /// amountIn The desired input amount /// @return deltaAmounts Delta amounts along the path resulted from the swap /// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path @@ -92,7 +92,7 @@ interface IQuoter { /// @param params The params for the quote, encoded as `QuoteExactOutputSingleParams` /// poolKey The key for identifying a V4 pool /// zeroForOne If the swap is from currency0 to currency1 - /// recipient The indented recipient of the output tokens + /// recipient The intended recipient of the output tokens /// amountOut The desired input amount /// sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap /// hookData arbitrary hookData to pass into the associated hooks @@ -107,7 +107,7 @@ interface IQuoter { /// @param params the params for the quote, encoded as 'QuoteExactInputParams' /// currencyOut The output currency of the swap /// path The path of the swap encoded as PathKeys that contains currency, fee, tickSpacing, and hook info - /// recipient The indented recipient of the output tokens + /// recipient The intended recipient of the output tokens /// amountOut The desired output amount /// @return deltaAmounts Delta amounts along the path resulted from the swap /// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path