From 802a4bd428edeff446cf0fca2696f4f7ad2a97cd Mon Sep 17 00:00:00 2001 From: miguelmtzinf Date: Wed, 12 Jan 2022 15:06:21 +0100 Subject: [PATCH] fix: Fix contract docstrings --- .../protocol/tokenization/base/MintableIncentivizedERC20.sol | 4 ++-- .../protocol/tokenization/base/ScaledBalanceTokenBase.sol | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/protocol/tokenization/base/MintableIncentivizedERC20.sol b/contracts/protocol/tokenization/base/MintableIncentivizedERC20.sol index 0db49e37e..cea8e6d2c 100644 --- a/contracts/protocol/tokenization/base/MintableIncentivizedERC20.sol +++ b/contracts/protocol/tokenization/base/MintableIncentivizedERC20.sol @@ -6,9 +6,9 @@ import {IAaveIncentivesController} from '../../../interfaces/IAaveIncentivesCont import {IPool} from '../../../interfaces/IPool.sol'; /** - * @title IncentivizedERC20 + * @title MintableIncentivizedERC20 * @author Aave - * @notice Basic MintableERC20 implementation + * @notice Implements mint and burn functions for IncentivizedERC20 **/ abstract contract MintableIncentivizedERC20 is IncentivizedERC20 { /** diff --git a/contracts/protocol/tokenization/base/ScaledBalanceTokenBase.sol b/contracts/protocol/tokenization/base/ScaledBalanceTokenBase.sol index 075f27db2..6d7f0c4e9 100644 --- a/contracts/protocol/tokenization/base/ScaledBalanceTokenBase.sol +++ b/contracts/protocol/tokenization/base/ScaledBalanceTokenBase.sol @@ -10,7 +10,7 @@ import {MintableIncentivizedERC20} from './MintableIncentivizedERC20.sol'; /** * @title ScaledBalanceTokenBase - * @author Aave, inspired by the Openzeppelin ERC20 implementation + * @author Aave * @notice Basic ERC20 implementation of scaled balance token **/ abstract contract ScaledBalanceTokenBase is MintableIncentivizedERC20, IScaledBalanceToken {