Skip to content

Commit

Permalink
Merge pull request #373 from Neurone/patch-1
Browse files Browse the repository at this point in the history
Fix mispelled words (#371)
  • Loading branch information
frangio authored Aug 19, 2017
2 parents 0ed98ea + 7c9c0f6 commit d1a82dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/token/StandardToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit d1a82dd

Please sign in to comment.