Skip to content

Commit 0564ee9

Browse files
committed
docs: improve comments
1 parent 16622f5 commit 0564ee9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/chainlink/Oracle2.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ contract Oracle2 is IOracle {
2020
/* CONSTRUCTOR */
2121

2222
/// @param baseFeed Base feed. Pass address zero if the price = 1.
23-
/// @param baseTokenDecimals Base token decimals. Pass 0 if the price = 1.
2423
/// @param quoteFeed Quote feed. Pass address zero if the price = 1.
25-
/// @param quoteTokenDecimals Quote token decimals. Pass 0 if the price = 1.
24+
/// @param baseTokenDecimals Base token decimals.
25+
/// @param quoteTokenDecimals Quote token decimals.
2626
constructor(
2727
AggregatorV3Interface baseFeed,
2828
AggregatorV3Interface quoteFeed,

src/chainlink/Oracle4.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ contract Oracle4 is IOracle {
2727
/// @param secondBaseFeed Second base feed. Pass address zero if the price = 1.
2828
/// @param firstQuoteFeed Quote feed. Pass address zero if the price = 1.
2929
/// @param secondQuoteFeed Quote feed. Pass address zero if the price = 1.
30-
/// @param baseTokenDecimals Base token decimals. Pass 0 if the price = 1.
31-
/// @param quoteTokenDecimals Quote token decimals. Pass 0 if the price = 1.
30+
/// @param baseTokenDecimals Base token decimals.
31+
/// @param quoteTokenDecimals Quote token decimals.
3232
constructor(
3333
AggregatorV3Interface firstBaseFeed,
3434
AggregatorV3Interface secondBaseFeed,

0 commit comments

Comments
 (0)