Skip to content

Commit

Permalink
Merge pull request OpenZeppelin#380 from skywinder/typo-fix
Browse files Browse the repository at this point in the history
Fixed typos in documentation
  • Loading branch information
frangio authored Aug 19, 2017
2 parents 01450e6 + d0f85e6 commit 98ad712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/token/StandardToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ contract StandardToken is ERC20, BasicToken {
}

/**
* @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
Expand All @@ -58,7 +58,7 @@ contract StandardToken is ERC20, BasicToken {
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifing the amount of tokens still available for the spender.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
Expand Down

0 comments on commit 98ad712

Please sign in to comment.