From 604faf0995c330b3b5d457dd19f26b55dd99ec56 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Tue, 24 Jun 2025 14:43:03 -0400 Subject: [PATCH] tape: Fix comment --- tape/encode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tape/encode.go b/tape/encode.go index 7ff0fc5..19f9379 100644 --- a/tape/encode.go +++ b/tape/encode.go @@ -82,7 +82,7 @@ func (this *Encoder) WriteIntN(value int64, bytes int) (n int, err error) { return this.WriteUintN(uint64(value), bytes) } -// for below functions, increase buffers if go somehow gets support for over 64 +// for Write/ReadUintN, increase buffers if go somehow gets support for over 64 // bit integers. we could also make an expanding int type in goutil to use here, // or maybe there is one in the stdlib. keep the int64 versions as well though // because its ergonomic.