From 3d3c072269f05f9febeb116b3c577aa27c704773 Mon Sep 17 00:00:00 2001 From: Axiom Bot <0xAxiom@users.noreply.github.com> Date: Sat, 16 May 2026 23:26:22 -0700 Subject: [PATCH] fix(libraries/rlp): remove duplicate word in writeList NatSpec --- src/libraries/rlp/RLPWriter.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/rlp/RLPWriter.sol b/src/libraries/rlp/RLPWriter.sol index 232497612..510887ad8 100644 --- a/src/libraries/rlp/RLPWriter.sol +++ b/src/libraries/rlp/RLPWriter.sol @@ -18,7 +18,7 @@ library RLPWriter { } } - /// @notice RLP encodes a list of RLP encoded byte byte strings. + /// @notice RLP encodes a list of RLP encoded byte strings. /// @param _in The list of RLP encoded byte strings. /// @return list_ The RLP encoded list of items in bytes. function writeList(bytes[] memory _in) internal pure returns (bytes memory list_) {