diff --git a/solidity/contracts/stBTC.sol b/solidity/contracts/stBTC.sol index f836550bc..6da6abf48 100644 --- a/solidity/contracts/stBTC.sol +++ b/solidity/contracts/stBTC.sol @@ -528,8 +528,8 @@ contract stBTC is ERC4626Fees, PausableOwnable { return convertToAssets(balanceOf(account)); } - /// @notice Previews the amount of shares that will be burned for the given - /// amount of repaid debt assets. + /// @notice Previews the amount of assets that will be burned for the given + /// amount of repaid shares. function previewRepayDebt(uint256 shares) public view returns (uint256) { return convertToAssets(shares); }