The AerodromeDexter contract contains misleading comments that incorrectly reference Uniswap V3 and its Universal Router.
https://github.com/code-423n4/2024-12-flex-perpetuals/blob/b84a0812c3368866964b8a16e7c36f6e7a50b655/src/extensions/dexters/AerodromeDexter.sol#L39-L40
The comment in the run function states:  
This implies that the function is intended for Uniswap V3 swaps, which is not the case as the contract is designed to work with the Aerodrome router.
Another comment states:  
This further reinforces the incorrect association with Uniswap, leading to potential confusion regarding the contracts functionality.
Developers reading the code may mistakenly believe that the contract interacts with Uniswap V3, which could lead to misunderstandings during code review or maintenance. This could result in incorrect assumptions about the contracts behavior and potential integration issues.
Update the misleading comments to accurately reflect the contracts purpose and functionality.
