From a133f13f0ea9d9aef39e200d2edd8a27f6ab206f Mon Sep 17 00:00:00 2001 From: Adam Dossa Date: Mon, 14 Jan 2019 08:47:04 -0400 Subject: [PATCH] Fix comments --- contracts/tokens/SecurityToken.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/tokens/SecurityToken.sol b/contracts/tokens/SecurityToken.sol index e9782b2d1..d2aaa9b55 100644 --- a/contracts/tokens/SecurityToken.sol +++ b/contracts/tokens/SecurityToken.sol @@ -499,14 +499,14 @@ contract SecurityToken is StandardToken, DetailedERC20, ReentrancyGuard, Registr } /** - * @notice Internal - adjusts totalSupply at checkpoint after minting or burning tokens + * @notice Internal - adjusts totalSupply at checkpoint before minting or burning tokens */ function _adjustTotalSupplyCheckpoints() internal { TokenLib.adjustCheckpoints(checkpointTotalSupply, totalSupply(), currentCheckpointId); } /** - * @notice Internal - adjusts token holder balance at checkpoint after a token transfer + * @notice Internal - adjusts token holder balance at checkpoint before a token transfer * @param _investor address of the token holder affected */ function _adjustBalanceCheckpoints(address _investor) internal {