Skip to content

Commit 688f0a4

Browse files
authored
Fix comments (#519)
1 parent 124311b commit 688f0a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/tokens/SecurityToken.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,14 +499,14 @@ contract SecurityToken is StandardToken, DetailedERC20, ReentrancyGuard, Registr
499499
}
500500

501501
/**
502-
* @notice Internal - adjusts totalSupply at checkpoint after minting or burning tokens
502+
* @notice Internal - adjusts totalSupply at checkpoint before minting or burning tokens
503503
*/
504504
function _adjustTotalSupplyCheckpoints() internal {
505505
TokenLib.adjustCheckpoints(checkpointTotalSupply, totalSupply(), currentCheckpointId);
506506
}
507507

508508
/**
509-
* @notice Internal - adjusts token holder balance at checkpoint after a token transfer
509+
* @notice Internal - adjusts token holder balance at checkpoint before a token transfer
510510
* @param _investor address of the token holder affected
511511
*/
512512
function _adjustBalanceCheckpoints(address _investor) internal {

0 commit comments

Comments
 (0)