Skip to content

Commit 7abc4f2

Browse files
committed
docs: update comments
1 parent 8a6bbf5 commit 7abc4f2

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/chainlink/OracleFourFeeds.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import {AggregatorV3Interface, DataFeedLib} from "./libraries/DataFeedLib.sol";
88
/// @title OracleFourFeeds
99
/// @author Morpho Labs
1010
/// @custom:contact [email protected]
11-
/// @notice Oracle using 4 Chainlink-compliant feeds to compute the price of a collateral token quoted in a borrowable
12-
/// token within a Morpho Blue market.
11+
/// @notice Morpho Blue oracle using 4 Chainlink-compliant feeds.
1312
contract OracleFourFeeds is IOracle {
1413
using DataFeedLib for AggregatorV3Interface;
1514

@@ -28,7 +27,6 @@ contract OracleFourFeeds is IOracle {
2827

2928
/* CONSTRUCTOR */
3029

31-
/// @dev Initializes the contract.
3230
/// @param firstBaseFeed First base feed. Pass address zero if the price = 1.
3331
/// @param secondBaseFeed Second base feed. Pass address zero if the price = 1.
3432
/// @param firstQuoteFeed Quote feed. Pass address zero if the price = 1.

src/chainlink/OracleTwoFeeds.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import {AggregatorV3Interface, DataFeedLib} from "./libraries/DataFeedLib.sol";
88
/// @title OracleTwoFeeds
99
/// @author Morpho Labs
1010
/// @custom:contact [email protected]
11-
/// @notice Oracle using 2 Chainlink-compliant feeds to compute the price of a collateral token quoted in a borrowable
12-
/// token within a Morpho Blue market.
11+
/// @notice Morpho Blue oracle using 2 Chainlink-compliant feeds.
1312
contract OracleTwoFeeds is IOracle {
1413
using DataFeedLib for AggregatorV3Interface;
1514

@@ -24,7 +23,6 @@ contract OracleTwoFeeds is IOracle {
2423

2524
/* CONSTRUCTOR */
2625

27-
/// @dev Initializes the contract.
2826
/// @param baseFeed Base feed. Pass address zero if the price = 1.
2927
/// @param quoteFeed Quote feed. Pass address zero if the price = 1.
3028
/// @param baseTokenDecimals Base token decimals.

0 commit comments

Comments
 (0)