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 }