Skip to content

Commit

Permalink
docs: minor comment improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed Oct 1, 2023
1 parent f4a3678 commit e7da492
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/chainlink/OracleThreeWay.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ contract OracleThreeWay is IOracle {

/* CONSTANT */

/// @notice First Base feed.
/// @notice First base feed.
AggregatorV3Interface public immutable FIRST_BASE_FEED;
/// @notice Second Base feed.
/// @notice Second base feed.
AggregatorV3Interface public immutable SECOND_BASE_FEED;
/// @notice Quote feed.
AggregatorV3Interface public immutable QUOTE_FEED;
Expand All @@ -21,8 +21,8 @@ contract OracleThreeWay is IOracle {

/* CONSTRUCTOR */

/// @param firstBaseFeed First Base feed.
/// @param secondBaseFeed Second Base feed.
/// @param firstBaseFeed First base feed.
/// @param secondBaseFeed Second base feed.
/// @param quoteFeed Quote feed. Pass address zero if the price = 1.
/// @param baseTokenDecimals Base token decimals.
/// @param quoteTokenDecimals Quote token decimals. Pass 0 if the price = 1.
Expand Down

0 comments on commit e7da492

Please sign in to comment.