From 145815868ad822c2fa00729180185981131bcbe3 Mon Sep 17 00:00:00 2001 From: Wiktor Date: Sat, 30 Nov 2024 01:59:06 +0300 Subject: [PATCH 1/3] IERC4626.sol --- .../lib/forge-std/src/interfaces/IERC4626.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/lib/openzeppelin-contracts/lib/forge-std/src/interfaces/IERC4626.sol b/contracts/lib/openzeppelin-contracts/lib/forge-std/src/interfaces/IERC4626.sol index bfe3a115..c1aa39c0 100644 --- a/contracts/lib/openzeppelin-contracts/lib/forge-std/src/interfaces/IERC4626.sol +++ b/contracts/lib/openzeppelin-contracts/lib/forge-std/src/interfaces/IERC4626.sol @@ -161,7 +161,7 @@ interface IERC4626 is IERC20 { /// - MUST NOT revert. function maxRedeem(address owner) external view returns (uint256 maxShares); - /// @notice Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block, + /// @notice Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, /// given current on-chain conditions. /// @dev /// - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call From 585a3e39236c06df4d345740b7e1ecd2cabaa10c Mon Sep 17 00:00:00 2001 From: Wiktor Date: Sat, 30 Nov 2024 02:03:17 +0300 Subject: [PATCH 2/3] IERC4626.sol --- .../openzeppelin-contracts/contracts/interfaces/IERC4626.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol b/contracts/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol index 77dd96a0..749e3794 100644 --- a/contracts/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol +++ b/contracts/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol @@ -200,7 +200,7 @@ interface IERC4626 is IERC20, IERC20Metadata { function maxRedeem(address owner) external view returns (uint256 maxShares); /** - * @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block, + * @dev Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, * given current on-chain conditions. * * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call From a5a2eaf7ad32c3b22a53127507ed0a640dfb2a3f Mon Sep 17 00:00:00 2001 From: Wiktor Date: Sat, 30 Nov 2024 02:05:27 +0300 Subject: [PATCH 3/3] IERC4626.sol --- .../openzeppelin-contracts/contracts/interfaces/IERC4626.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/lib/reference/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol b/contracts/lib/reference/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol index f7c5397a..a855133c 100644 --- a/contracts/lib/reference/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol +++ b/contracts/lib/reference/lib/openzeppelin-contracts/contracts/interfaces/IERC4626.sol @@ -204,7 +204,7 @@ interface IERC4626 is IERC20, IERC20Metadata { function maxRedeem(address owner) external view returns (uint256 maxShares); /** - * @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block, + * @dev Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, * given current on-chain conditions. * * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call