From 2e70cc956732ace5690fc551c99f80a9b2381a4f Mon Sep 17 00:00:00 2001 From: Roman Storm Date: Wed, 23 Aug 2017 18:57:22 -0700 Subject: [PATCH] Remove confusing comment left from FinalizableCrowdsale AFter this PR https://github.com/OpenZeppelin/zeppelin-solidity/pull/364 the comment was left. --- contracts/crowdsale/FinalizableCrowdsale.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/crowdsale/FinalizableCrowdsale.sol b/contracts/crowdsale/FinalizableCrowdsale.sol index b9920bacac5..9e63e722673 100644 --- a/contracts/crowdsale/FinalizableCrowdsale.sol +++ b/contracts/crowdsale/FinalizableCrowdsale.sol @@ -7,7 +7,7 @@ import './Crowdsale.sol'; /** * @title FinalizableCrowdsale * @dev Extension of Crowsdale where an owner can do extra work - * after finishing. By default, it will end token minting. + * after finishing. */ contract FinalizableCrowdsale is Crowdsale, Ownable { using SafeMath for uint256;