From 5f6d511af95c138110863ebc783d2e97107374a7 Mon Sep 17 00:00:00 2001 From: Hoon Choi Date: Fri, 20 Jul 2018 09:47:53 +0900 Subject: [PATCH] Fix typo in Crowdsale.sol (#1035) --- contracts/crowdsale/Crowdsale.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/crowdsale/Crowdsale.sol b/contracts/crowdsale/Crowdsale.sol index 81ceac2c7..674a6fdf5 100644 --- a/contracts/crowdsale/Crowdsale.sol +++ b/contracts/crowdsale/Crowdsale.sol @@ -14,7 +14,7 @@ import "../token/ERC20/SafeERC20.sol"; * The external interface represents the basic interface for purchasing tokens, and conform * the base architecture for crowdsales. They are *not* intended to be modified / overriden. * The internal interface conforms the extensible and modifiable surface of crowdsales. Override - * the methods to add functionality. Consider using 'super' where appropiate to concatenate + * the methods to add functionality. Consider using 'super' where appropriate to concatenate * behavior. */ contract Crowdsale {