We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16751b3 commit 3ef9298Copy full SHA for 3ef9298
contracts/ProductApi3ReaderProxyV1.sol
@@ -34,7 +34,7 @@ contract ProductApi3ReaderProxyV1 is IProductApi3ReaderProxyV1 {
34
/// @notice Returns the current value and timestamp of the rate composition
35
/// between two IApi3ReaderProxy proxies by multiplying their values
36
/// @dev Calculates product as `(int256(value1) * int256(value2)) / 1e18`.
37
- /// The initial multiplication `int256(value1) * int256(value2)` will revert
+ /// The initial multiplication `int256(value1) * int256(value2)` may revert
38
/// on `int256` overflow. The final `int256` result of the full expression
39
/// is then cast to `int224`. This cast is unchecked for gas optimization
40
/// and may silently truncate if the result exceeds `int224` limits.
0 commit comments