Skip to content

Commit d16f83f

Browse files
TalAterProphetDaniel
authored andcommitted
Tiny indentation fix in MintedCrowdsale (OpenZeppelin#792)
Tiny indentation fix in MintedCrowdsale
1 parent 4be1aaa commit d16f83f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

contracts/crowdsale/emission/MintedCrowdsale.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import "../../token/ERC20/MintableToken.sol";
1212
contract MintedCrowdsale is Crowdsale {
1313

1414
/**
15-
* @dev Overrides delivery by minting tokens upon purchase.
16-
* @param _beneficiary Token purchaser
17-
* @param _tokenAmount Number of tokens to be minted
18-
*/
15+
* @dev Overrides delivery by minting tokens upon purchase.
16+
* @param _beneficiary Token purchaser
17+
* @param _tokenAmount Number of tokens to be minted
18+
*/
1919
function _deliverTokens(address _beneficiary, uint256 _tokenAmount) internal {
2020
require(MintableToken(token).mint(_beneficiary, _tokenAmount));
2121
}

0 commit comments

Comments
 (0)