Skip to content

Commit

Permalink
change natspec to ILockCallback.lockAcquired (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
wildmolasses authored Oct 30, 2023
1 parent 1474c1d commit 57df4b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/interfaces/IPoolManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ interface IPoolManager is IFees, IERC1155 {
function currencyDelta(address locker, Currency currency) external view returns (int256);

/// @notice All operations go through this function
/// @param data Any data to pass to the callback, via `ILockCallback(msg.sender).lockCallback(data)`
/// @return The data returned by the call to `ILockCallback(msg.sender).lockCallback(data)`
/// @param data Any data to pass to the callback, via `ILockCallback(msg.sender).lockAcquired(data)`
/// @return The data returned by the call to `ILockCallback(msg.sender).lockAcquired(data)`
function lock(bytes calldata data) external returns (bytes memory);

struct ModifyPositionParams {
Expand Down

0 comments on commit 57df4b1

Please sign in to comment.