Skip to content

Commit

Permalink
fix: Add minor changes to contract docs
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Sep 9, 2021
1 parent dfc4b36 commit 4f393aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions contracts/interfaces/IAaveIncentivesController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ interface IAaveIncentivesController {
) external returns (uint256);

/**
* @notice returns the unclaimed rewards of the user
* @notice Returns the unclaimed rewards of the user
* @param user The address of the user
* @return The unclaimed user rewards
*/
function getUserUnclaimedRewards(address user) external view returns (uint256);

/**
* @notice returns the user index for a specific asset
* @notice Returns the user index for a specific asset
* @param user The address of the user
* @param asset The asset to incentivize
* @return The user index for the asset
Expand Down
4 changes: 2 additions & 2 deletions contracts/interfaces/IRateOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ pragma solidity 0.8.6;

interface IRateOracle {
/**
* @notice returns the market borrow rate in ray
* @notice Returns the market borrow rate in ray
* @param asset The asset to retrieve borrow rate for
* @return The borrow rate for the given asset
**/
function getMarketBorrowRate(address asset) external view returns (uint256);

/**
* @notice sets the market borrow rate. Rate value must be in ray
* @notice Sets the market borrow rate. Rate value must be in ray
* @param asset The asset to set borrow rate for
* @param rate The rate to use
**/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ abstract contract VersionedInitializable {
}

/**
* @notice returns the revision number of the contract
* @notice Returns the revision number of the contract
* @dev Needs to be defined in the inherited class as a constant.
* @return The revision number
**/
Expand Down

0 comments on commit 4f393aa

Please sign in to comment.