From 93904ed6f0442bcf9d0d5578e4f66b5cce356539 Mon Sep 17 00:00:00 2001 From: Reddawn <35641620+forumevi@users.noreply.github.com> Date: Fri, 28 Aug 2026 22:22:17 +0300 Subject: [PATCH] docs: fix typo in Bytes library NatSpec comment --- src/libraries/Bytes.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/Bytes.sol b/src/libraries/Bytes.sol index a0ae471c3..4e1a5780e 100644 --- a/src/libraries/Bytes.sol +++ b/src/libraries/Bytes.sol @@ -76,7 +76,7 @@ library Bytes { } /// @notice Slices a byte array with a given starting index up to the end of the original byte - /// array. Returns a new array rathern than a pointer to the original. + /// array. Returns a new array rather than a pointer to the original. /// @param _bytes Byte array to slice. /// @param _start Starting index of the slice. /// @return Slice of the input byte array.