Skip to content

Commit

Permalink
Tiny indentation fix in MintedCrowdsale (OpenZeppelin#792)
Browse files Browse the repository at this point in the history
Tiny indentation fix in MintedCrowdsale
  • Loading branch information
TalAter authored and shrugs committed Mar 6, 2018
1 parent ac0deac commit c3f5a91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/crowdsale/emission/MintedCrowdsale.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import "../../token/ERC20/MintableToken.sol";
contract MintedCrowdsale is Crowdsale {

/**
* @dev Overrides delivery by minting tokens upon purchase.
* @param _beneficiary Token purchaser
* @param _tokenAmount Number of tokens to be minted
*/
* @dev Overrides delivery by minting tokens upon purchase.
* @param _beneficiary Token purchaser
* @param _tokenAmount Number of tokens to be minted
*/
function _deliverTokens(address _beneficiary, uint256 _tokenAmount) internal {
require(MintableToken(token).mint(_beneficiary, _tokenAmount));
}
Expand Down

0 comments on commit c3f5a91

Please sign in to comment.