doc: fix formatting

This commit is contained in:
kayibal
2024-10-23 13:00:31 +01:00
parent 378c1c2786
commit 3a93a55a46

View File

@@ -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);