From 9e4c541e557e4a9412991bfe4cbb5d8e4786e1e6 Mon Sep 17 00:00:00 2001 From: Giuseppe Bertone Date: Tue, 15 Aug 2017 23:08:41 +0200 Subject: [PATCH] Fix for mispelled words (#371) --- contracts/token/StandardToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/StandardToken.sol b/contracts/token/StandardToken.sol index 0f73c8d73fd..09810f01a39 100644 --- a/contracts/token/StandardToken.sol +++ b/contracts/token/StandardToken.sol @@ -21,7 +21,7 @@ contract StandardToken is ERC20, BasicToken { * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to - * @param _value uint256 the amout of tokens to be transfered + * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) returns (bool) { var _allowance = allowed[_from][msg.sender];