tape: Fix comment

This commit is contained in:
Sasha Koshka 2025-10-13 10:54:40 -04:00
parent 2194198693
commit f08213cd49

View File

@ -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 // not we receive an empty any value) actually makes it fucking
// work. go figure(). // work. go figure().
// //
// (the map allocation functionality in skeletonPointer has been // (the map allocation functionality in skeletonPointer was
// removed) // removed after this comment was written)
value := reflect.MakeMapWithSize(reflect.TypeOf(dummyMap), lengthCast) value := reflect.MakeMapWithSize(reflect.TypeOf(dummyMap), lengthCast)
destination.Set(value) destination.Set(value)
destination = value destination = value