From 7fab9f13ae7b1a83ffea545349ed17a3364b6a11 Mon Sep 17 00:00:00 2001 From: code0xff Date: Thu, 18 Jun 2026 00:02:49 +0900 Subject: [PATCH] fix: fix minor typo --- src/AllowanceTransfer.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AllowanceTransfer.sol b/src/AllowanceTransfer.sol index 56c4cce0..f4fc4b20 100644 --- a/src/AllowanceTransfer.sol +++ b/src/AllowanceTransfer.sol @@ -126,7 +126,7 @@ contract AllowanceTransfer is IAllowanceTransfer, EIP712 { } /// @notice Sets the new values for amount, expiration, and nonce. - /// @dev Will check that the signed nonce is equal to the current nonce and then incrememnt the nonce value by 1. + /// @dev Will check that the signed nonce is equal to the current nonce and then increment the nonce value by 1. /// @dev Emits a Permit event. function _updateApproval(PermitDetails memory details, address owner, address spender) private { uint48 nonce = details.nonce;