From 22d3b8fcca6c6c3a2865c9020e5b9dd8193a38d5 Mon Sep 17 00:00:00 2001 From: Aryan Malik Date: Sun, 5 Nov 2023 16:36:11 +0530 Subject: [PATCH] Update ATokenYieldSource.sol: fixed typos within comments --- contracts/yield-source/ATokenYieldSource.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/yield-source/ATokenYieldSource.sol b/contracts/yield-source/ATokenYieldSource.sol index eb790cb..b620588 100644 --- a/contracts/yield-source/ATokenYieldSource.sol +++ b/contracts/yield-source/ATokenYieldSource.sol @@ -97,7 +97,7 @@ contract ATokenYieldSource is ERC20, IProtocolYieldSource, Manageable, Reentranc /// @param _aToken Aave aToken address /// @param _incentivesController Aave incentivesController address /// @param _lendingPoolAddressesProviderRegistry Aave lendingPoolAddressesProviderRegistry address - /// @param _decimals Number of decimals the shares (inhereted ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates + /// @param _decimals Number of decimals the shares (inherited ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates /// @param _symbol Token symbol for the underlying shares ERC20 /// @param _name Token name for the underlying shares ERC20 constructor ( @@ -137,7 +137,7 @@ contract ATokenYieldSource is ERC20, IProtocolYieldSource, Manageable, Reentranc ); } - /// @notice Returns the number of decimals that the token repesenting yield source shares has + /// @notice Returns the number of decimals that the token representing yield source shares has /// @return The number of decimals function decimals() public override view returns (uint8) { return __decimals;