Skip to content

Commit

Permalink
Fix typo: "an uint256" -> "a uint256" (#1658)
Browse files Browse the repository at this point in the history
Using "a" instead of "an" makes this consistent with the comment on `allowance`.
  • Loading branch information
jeremyschlatter authored and frangio committed Mar 1, 2019
1 parent 41aa39a commit 8cc3349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/token/ERC20/ERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract ERC20 is IERC20 {
/**
* @dev Gets the balance of the specified address.
* @param owner The address to query the balance of.
* @return An uint256 representing the amount owned by the passed address.
* @return A uint256 representing the amount owned by the passed address.
*/
function balanceOf(address owner) public view returns (uint256) {
return _balances[owner];
Expand Down

0 comments on commit 8cc3349

Please sign in to comment.