Commit 8cc3349d by Jeremy Schlatter Committed by Francisco Giordano

Fix typo: "an uint256" -> "a uint256" (#1658)

Using "a" instead of "an" makes this consistent with the comment on `allowance`.
parent 41aa39af
...@@ -34,7 +34,7 @@ contract ERC20 is IERC20 { ...@@ -34,7 +34,7 @@ contract ERC20 is IERC20 {
/** /**
* @dev Gets the balance of the specified address. * @dev Gets the balance of the specified address.
* @param owner The address to query the balance of. * @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) { function balanceOf(address owner) public view returns (uint256) {
return _balances[owner]; return _balances[owner];
......
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