Commit 7c9c0f65 by Giuseppe Bertone Committed by GitHub

Fix for mispelled words (#371)

parent 84a68e0c
...@@ -21,7 +21,7 @@ contract StandardToken is ERC20, BasicToken { ...@@ -21,7 +21,7 @@ contract StandardToken is ERC20, BasicToken {
* @dev Transfer tokens from one address to another * @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from * @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to * @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) { function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
var _allowance = allowed[_from][msg.sender]; var _allowance = allowed[_from][msg.sender];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment