Skip to content

Commit 9b55fd2

Browse files
authored
Apply suggestions from code review
1 parent f10687f commit 9b55fd2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contracts/token/ERC20/ERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
291291
}
292292

293293
/**
294-
* @dev Updates `owner`s allowance for `spender` based on spent `value`.
294+
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
295295
*
296296
* Does not update the allowance value in case of infinite allowance.
297297
* Revert if not enough allowance is available.

contracts/token/ERC20/extensions/IERC20Permit.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ interface IERC20Permit {
5555
* - `deadline` must be a timestamp in the future.
5656
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
5757
* over the EIP712-formatted function arguments.
58-
* - the signature must use ``owner'``s current nonce (see {nonces}).
58+
* - the signature must use ``owner``'s current nonce (see {nonces}).
5959
*
6060
* For more information on the signature format, see the
6161
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP

contracts/token/ERC20/extensions/draft-ERC20TemporaryApproval.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ abstract contract ERC20TemporaryApproval is ERC20, IERC7674 {
6161
}
6262

6363
/**
64-
* @dev Sets `value` as the temporary allowance of `spender` over the `owner'`s tokens.
64+
* @dev Sets `value` as the temporary allowance of `spender` over the `owner`'s tokens.
6565
*
6666
* This internal function is equivalent to `temporaryApprove`, and can be used to e.g. set automatic allowances
6767
* for certain subsystems, etc.

0 commit comments

Comments
 (0)