From 3a93a55a46b0da9a9b9e161de22c599a5f87af3d Mon Sep 17 00:00:00 2001 From: kayibal Date: Wed, 23 Oct 2024 13:00:31 +0100 Subject: [PATCH] doc: fix formatting --- evm/src/interfaces/ISwapAdapter.sol | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/evm/src/interfaces/ISwapAdapter.sol b/evm/src/interfaces/ISwapAdapter.sol index a8fa405..5e1211c 100644 --- a/evm/src/interfaces/ISwapAdapter.sol +++ b/evm/src/interfaces/ISwapAdapter.sol @@ -74,9 +74,12 @@ interface ISwapAdapter is ISwapAdapterTypes { /// @param poolId The ID of the trading pool. /// @param sellToken The token being sold. /// @param buyToken The token being bought. - /// @return limits An array of size two indicating the limit amount for the sell - /// token (maximum the pool is willing to buy in sell token) as well as the limit - /// amount of the buy token (maximum the pool is willing to sell in buy token). + /// @return limits An array of size two indicating the limit amount for the + /// sell + /// token (maximum the pool is willing to buy in sell token) as well as + /// the limit + /// amount of the buy token (maximum the pool is willing to sell in buy + /// token). function getLimits(bytes32 poolId, address sellToken, address buyToken) external returns (uint256[] memory limits);