From 1e89bffb7c2a3b14feebdfe4a764c88638cf7b01 Mon Sep 17 00:00:00 2001 From: Emmanuel Di Pretoro Date: Tue, 16 Jun 2026 21:43:36 +0200 Subject: [PATCH] Reformating code (w/ gofmt) --- internal/utils.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/utils.go b/internal/utils.go index 5891772..2e6bea9 100644 --- a/internal/utils.go +++ b/internal/utils.go @@ -1,11 +1,11 @@ package noid type Counter struct { - top int - value int + top int + value int } func NewCounter(top, value int) *Counter { - c := Counter{top: top, value: value} - return &c + c := Counter{top: top, value: value} + return &c }