Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ATokenYieldSource.sol: fixed typos within comments #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/yield-source/ATokenYieldSource.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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;
Expand Down