Skip to content

Commit fd0be04

Browse files
committed
Small docs updates
1 parent 9ef4e63 commit fd0be04

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/IWstETH.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.27;
33

4-
/// @title A minimal interface for the wstETH contract indended to read the
5-
/// stETH value per token value of 1 unit of wstETH.
4+
/// @title A minimal interface for the wstETH contract on Ethereum, used to read
5+
/// the stETH value per token value of 1 unit of wstETH.
66
interface IWstETH {
77
/// @notice Returns the stETH value per token value of 1 unit of wstETH.
88
function stEthPerToken() external view returns (uint256);

contracts/WstETHApi3ReaderProxyV1.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pragma solidity ^0.8.27;
44
import "@api3/contracts/interfaces/IApi3ReaderProxy.sol";
55
import "./IWstETH.sol";
66

7-
/// @title An immutable proxy contract that reads the price of wstETH directly
8-
/// from the WstETH contract on Ethereum.
7+
/// @title An immutable proxy contract that reads the price of wstETH/stETH
8+
/// directly from the WstETH contract on Ethereum.
99
/// @dev This contract implements only the IApi3ReaderProxy and not the
1010
/// AggregatorV2V3Interface which is usually implemented with Api3 proxies. The
1111
/// user of this contract needs to be aware of this and only use this contract

0 commit comments

Comments
 (0)