Skip to content

Commit

Permalink
Update IERC4626.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
nnsW3 authored Sep 26, 2024
1 parent 24f483b commit e607523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/IERC4626.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ interface IERC4626 is IERC20 {
function mint(uint256 shares, address receiver) external returns (uint256 assets);

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

0 comments on commit e607523

Please sign in to comment.