From f129f217e5547ac6707ad68fe35b3d4df87da9ed Mon Sep 17 00:00:00 2001 From: kayibal Date: Wed, 23 Oct 2024 10:45:22 +0100 Subject: [PATCH] docs: Document the meaning of limits array --- evm/src/interfaces/ISwapAdapter.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/src/interfaces/ISwapAdapter.sol b/evm/src/interfaces/ISwapAdapter.sol index 205cd2d..a8fa405 100644 --- a/evm/src/interfaces/ISwapAdapter.sol +++ b/evm/src/interfaces/ISwapAdapter.sol @@ -74,7 +74,7 @@ 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 + /// @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)