Skip to content

Commit e607523

Browse files
authored
Update IERC4626.sol
1 parent 24f483b commit e607523

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/IERC4626.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ interface IERC4626 is IERC20 {
119119
function mint(uint256 shares, address receiver) external returns (uint256 assets);
120120

121121
/// @notice Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the
122-
/// Vault, through a withdraw call.
122+
/// Vault, through a withdrawal call.
123123
/// @dev
124124
/// - MUST return a limited value if owner is subject to some withdrawal limit or timelock.
125125
/// - MUST NOT revert.
@@ -145,7 +145,7 @@ interface IERC4626 is IERC20 {
145145
/// @dev
146146
/// - MUST emit the Withdraw event.
147147
/// - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
148-
/// withdraw execution, and are accounted for during withdraw.
148+
/// withdraw execution, and are accounted for during withdrawal.
149149
/// - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner
150150
/// not having enough shares, etc).
151151
///

0 commit comments

Comments
 (0)