From 5a907fcb1c3e4a5c061b164c13022a295ad33c9d Mon Sep 17 00:00:00 2001 From: Evgeny Taktarov Date: Fri, 17 Jan 2025 18:40:13 +0700 Subject: [PATCH] docs: comment --- contracts/0.8.25/vaults/Dashboard.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/0.8.25/vaults/Dashboard.sol b/contracts/0.8.25/vaults/Dashboard.sol index 9dfe6f730..15efbe584 100644 --- a/contracts/0.8.25/vaults/Dashboard.sol +++ b/contracts/0.8.25/vaults/Dashboard.sol @@ -303,7 +303,7 @@ contract Dashboard is AccessControlEnumerable { } /** - * @notice Mints wstETH tokens backed by the vault to a recipient. Approvals for the passed amounts should be done before. + * @notice Mints wstETH tokens backed by the vault to a recipient. * @param _recipient Address of the recipient * @param _amountOfWstETH Amount of tokens to mint */ @@ -320,7 +320,7 @@ contract Dashboard is AccessControlEnumerable { } /** - * @notice Burns stETH shares from the sender backed by the vault + * @notice Burns stETH shares from the sender backed by the vault. Approvals for the passed amounts should be done before. * @param _amountOfShares Amount of stETH shares to burn */ function burnShares(uint256 _amountOfShares) external virtual onlyRole(DEFAULT_ADMIN_ROLE) { @@ -328,7 +328,7 @@ contract Dashboard is AccessControlEnumerable { } /** - * @notice Burns stETH shares from the sender backed by the vault + * @notice Burns stETH shares from the sender backed by the vault. Approvals for the passed amounts should be done before. * @param _amountOfStETH Amount of stETH shares to burn */ function burnSteth(uint256 _amountOfStETH) external virtual onlyRole(DEFAULT_ADMIN_ROLE) {