From b2285086ebfa4ef4b241433bf1e331e985f2a4de Mon Sep 17 00:00:00 2001 From: guqicun Date: Mon, 9 Dec 2024 04:23:06 +0800 Subject: [PATCH] chore: remove redundant word in comment (#26) Signed-off-by: guqicun --- src/OutputOracle.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OutputOracle.sol b/src/OutputOracle.sol index 9c2a3da..c36116a 100644 --- a/src/OutputOracle.sol +++ b/src/OutputOracle.sol @@ -192,7 +192,7 @@ contract OutputOracle is Initializable, ISemver { return l2Outputs.length == 0 ? 0 : l2Outputs[latestOutputIndex].l2BlockNumber; } - /// @notice Returns the the latest submitted L2 output proposal. + /// @notice Returns the latest submitted L2 output proposal. /// @return Latest submitted L2 output proposal. function latestL2Output() public view returns (Types.OutputProposal memory) { return l2Outputs[latestOutputIndex];