From 10546fd0973cce1740de798ccd450f3005fda47d Mon Sep 17 00:00:00 2001 From: hidewrong Date: Wed, 15 Jan 2025 00:35:22 +0800 Subject: [PATCH] chore: fix typo in comment (#154) --- nest/src/interfaces/IERC7575.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/src/interfaces/IERC7575.sol b/nest/src/interfaces/IERC7575.sol index d05771b3..3cba279e 100644 --- a/nest/src/interfaces/IERC7575.sol +++ b/nest/src/interfaces/IERC7575.sol @@ -6,7 +6,7 @@ import { IERC4626 } from "@openzeppelin/contracts/interfaces/IERC4626.sol"; interface IERC7575 is IERC165, IERC4626 { - /// @notice Address of the underlying `share` receivd on deposit into the vault + /// @notice Address of the underlying `share` received on deposit into the vault function share() external view returns (address shareTokenAddress); }