From a790ea862496e7c3d5ae1ca9fd944ee834343c73 Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Wed, 11 Sep 2024 00:55:56 +0300 Subject: [PATCH] fmt --- freelist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freelist.go b/freelist.go index 35b88a6..b1cf8dd 100644 --- a/freelist.go +++ b/freelist.go @@ -10,7 +10,7 @@ func defaultNextCap(currentCap int) int { } type elt[T any] struct { - value T // must be the first field to avoid offset calculations + value T // must be the first field to avoid offset calculations nextFree *elt[T] }