From 16b9b84dfc3d423e9c69b80d207cbf0064780d53 Mon Sep 17 00:00:00 2001 From: flanagansteve <32844300+flanagansteve@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:02:52 -0500 Subject: [PATCH] Fix IUniswapV3PoolState.sol doc string The previous docstring seemed to be an incomplete sentence --- contracts/interfaces/pool/IUniswapV3PoolState.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/interfaces/pool/IUniswapV3PoolState.sol b/contracts/interfaces/pool/IUniswapV3PoolState.sol index 620256c31..a1cdd79b1 100644 --- a/contracts/interfaces/pool/IUniswapV3PoolState.sol +++ b/contracts/interfaces/pool/IUniswapV3PoolState.sol @@ -13,7 +13,7 @@ interface IUniswapV3PoolState { /// boundary. /// observationIndex The index of the last oracle observation that was written, /// observationCardinality The current maximum number of observations stored in the pool, - /// observationCardinalityNext The next maximum number of observations, to be updated when the observation. + /// observationCardinalityNext The next maximum number of observations, updated when the current maximum is reached. /// feeProtocol The protocol fee for both tokens of the pool. /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0 /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.