Skip to content

Commit 206a476

Browse files
committed
review fixes
1 parent 375cd81 commit 206a476

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/protocol/integration/amm/ArrakisUniswapV3AmmAdapter.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ contract ArrakisUniswapV3AmmAdapter is IAmmAdapter {
271271
* Sorts the amount in order of tokens stored in Arrakis/UniswapV3 Pool
272272
*
273273
* @param _token0 Address of token0
274-
* @param _token0 Address of token1
274+
* @param _token1 Address of token1
275275
* @param _amount0 Amount of token0
276-
* @param _token1 Amount of token1
276+
* @param _amount1 Amount of token1
277277
*/
278278
function _getOrderedAmount(address _token0, address _token1, uint256 _amount0, uint256 _amount1) private pure returns(uint256, uint256) {
279279
return _token0 < _token1 ? (_amount0, _amount1) : (_amount1, _amount0);

utils/fixtures/arrakisV1Fixture.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class ArrakisV1Fixture {
6969
*
7070
* @param _owner the owner of the deployed Arrakis system
7171
* @param _uniswapV3Setup uniswapV3Fixture
72-
* @returns a new Arrakis Vault holding UniswapV3 position on given tokens
72+
* @returns void promise
7373
*/
7474
public async deployVaultAndFactoryAndinitialize(
7575
_owner: Account,

0 commit comments

Comments
 (0)