From f08213cd49819f63f20d001f50c8326ed38a1f3a Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Mon, 13 Oct 2025 10:54:40 -0400 Subject: [PATCH] tape: Fix comment --- tape/dynamic.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tape/dynamic.go b/tape/dynamic.go index 22a4f2c..7ce7665 100644 --- a/tape/dynamic.go +++ b/tape/dynamic.go @@ -252,8 +252,8 @@ func decodeAnyOrError(decoder *Decoder, destination reflect.Value, tag Tag) (n i // not we receive an empty any value) actually makes it fucking // work. go figure(). // - // (the map allocation functionality in skeletonPointer has been - // removed) + // (the map allocation functionality in skeletonPointer was + // removed after this comment was written) value := reflect.MakeMapWithSize(reflect.TypeOf(dummyMap), lengthCast) destination.Set(value) destination = value