From 9eccd5d002f89080d12d5ac2d800848cc701b2c3 Mon Sep 17 00:00:00 2001 From: 0xkenta Date: Thu, 20 Apr 2023 09:25:25 +0900 Subject: [PATCH] fix typo --- contracts/BaseStrategy.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/BaseStrategy.sol b/contracts/BaseStrategy.sol index 45ea7ae0..b8ae985a 100644 --- a/contracts/BaseStrategy.sol +++ b/contracts/BaseStrategy.sol @@ -562,7 +562,7 @@ abstract contract BaseStrategy { * is compatible. As an example: * * given 1e17 wei (0.1 ETH) as input, and want is USDC (6 decimals), - * with USDC/ETH = 1800, this should give back 1800000000 (180 USDC) + * with USDC/ETH = 1800, this should give back 180000000 (180 USDC) * * @param _amtInWei The amount (in wei/1e-18 ETH) to convert to `want` * @return The amount in `want` of `_amtInEth` converted to `want`