From b12db57f34017a00154982917f239d8e4dd9ae5e Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Fri, 18 Aug 2017 15:25:15 +0300 Subject: [PATCH] Fixed typo recieve -> receive --- contracts/token/MintableToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/MintableToken.sol b/contracts/token/MintableToken.sol index 92f591012dc..697551d3ddf 100644 --- a/contracts/token/MintableToken.sol +++ b/contracts/token/MintableToken.sol @@ -27,7 +27,7 @@ contract MintableToken is StandardToken, Ownable { /** * @dev Function to mint tokens - * @param _to The address that will recieve the minted tokens. + * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */