From 934538de8cbc9faf7ede1e9a94095ce70383080d Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 13 Feb 2026 21:16:22 +0100 Subject: [PATCH] rlp: fix typo in comment --- rlp/raw.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rlp/raw.go b/rlp/raw.go index 811a8e5e5a..69946f6d22 100644 --- a/rlp/raw.go +++ b/rlp/raw.go @@ -45,7 +45,7 @@ type RawList[T any] struct { // returns something valid either way. enc []byte - // len holds the number of items in the list. + // length holds the number of items in the list. length int }