From 8cc3349d1f8fbc20c50e8dac97686012365cb2af Mon Sep 17 00:00:00 2001 From: Jeremy Schlatter Date: Fri, 1 Mar 2019 07:03:19 -0800 Subject: [PATCH] Fix typo: "an uint256" -> "a uint256" (#1658) Using "a" instead of "an" makes this consistent with the comment on `allowance`. --- contracts/token/ERC20/ERC20.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC20/ERC20.sol b/contracts/token/ERC20/ERC20.sol index 1d697525e..81bd49fe5 100644 --- a/contracts/token/ERC20/ERC20.sol +++ b/contracts/token/ERC20/ERC20.sol @@ -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];