Skip to content

Commit 29ee31a

Browse files
committed
comment update
1 parent 2d9ce78 commit 29ee31a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spot-contracts/contracts/BondIssuer.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ contract BondIssuer is IBondIssuer, OwnableUpgradeable {
190190

191191
/// @inheritdoc IBondIssuer
192192
/// @dev Internally, we first iterate through the active list and then move on to the mature list.
193-
/// [0, activeBonds.len) is NOT guaranteed to be ordered,
194-
/// [activeBonds.len, numBonds) will be ordered by increasing maturity date.
193+
/// This list is NOT guaranteed to be ordered.
195194
function issuedBondAt(uint256 index) external view override returns (IBondController) {
196195
uint256 activeCount_ = _activeBonds.length();
197196
if (index < activeCount_) {

0 commit comments

Comments
 (0)