Skip to content

Commit

Permalink
ON-872: update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed May 20, 2024
1 parent ff43b64 commit 581d331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/OriumSftMarketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,15 @@ contract OriumSftMarketplace is Initializable, OwnableUpgradeable, PausableUpgra
}

/**
* @notice Cancels a rental offer.
* @notice Delist a rental offer.
* @param _offer The rental offer struct. It should be the same as the one used to create the offer.
*/
function delistRentalOffer(RentalOffer calldata _offer) external whenNotPaused {
_delistRentalOffer(_offer);
}

/**
* @notice Cancels a rental offer.
* @notice Delist a rental offer and withdraw it.
* @param _offer The rental offer struct. It should be the same as the one used to create the offer.
*/
function delistRentalOfferAndWithdraw(RentalOffer calldata _offer) external whenNotPaused {
Expand Down

0 comments on commit 581d331

Please sign in to comment.