Skip to content

Commit

Permalink
fix natspec
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Dec 5, 2024
1 parent 062e665 commit e0c9dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/IPoolInitializer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ interface IPoolInitializer {
/// @dev If the pool is already initialized, this function will not revert and just return type(int24).max
/// @param key The PoolKey of the pool to initialize
/// @param sqrtPriceX96 The initial sqrtPriceX96 of the pool
/// @return tick The current tick of the pool, or type(int24).max if the pool creation failed, or the pool already existed
/// @return The current tick of the pool, or type(int24).max if the pool creation failed, or the pool already existed
function initializePool(PoolKey calldata key, uint160 sqrtPriceX96) external payable returns (int24);
}

0 comments on commit e0c9dfa

Please sign in to comment.