From ffd74c6a8b79579338bb76f749762dd56d1d77a7 Mon Sep 17 00:00:00 2001 From: atarpara Date: Fri, 22 May 2026 16:52:42 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=A2=20Fix=20Typos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tokens/ERC4626.sol | 2 +- src/utils/SafeTransferLib.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tokens/ERC4626.sol b/src/tokens/ERC4626.sol index b78f60c71..ba74e9e43 100644 --- a/src/tokens/ERC4626.sol +++ b/src/tokens/ERC4626.sol @@ -327,7 +327,7 @@ abstract contract ERC4626 is ERC20 { maxAssets = type(uint256).max; } - /// @dev Returns the maximum amount of the Vault shares that can be minter for `to`, + /// @dev Returns the maximum amount of the Vault shares that can be minted for `to`, /// via a mint call. /// /// - MUST return a limited value if `to` is subject to some mint limit. diff --git a/src/utils/SafeTransferLib.sol b/src/utils/SafeTransferLib.sol index 8e45db164..5b322124c 100644 --- a/src/utils/SafeTransferLib.sol +++ b/src/utils/SafeTransferLib.sol @@ -455,7 +455,7 @@ library SafeTransferLib { } /// @dev Performs a `token.balanceOf(account)` check. - /// `implemented` denotes whether the `token` does not implement `balanceOf`. + /// `implemented` denotes whether the `token` implements `balanceOf`. /// `amount` is zero if the `token` does not implement `balanceOf`. function checkBalanceOf(address token, address account) internal