Skip to content

Commit

Permalink
fix: Fix contract docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Jan 12, 2022
1 parent 52abb3f commit 802a4bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 802a4bd

Please sign in to comment.