tape: Fix comment

This commit is contained in:
Sasha Koshka 2025-06-24 14:43:03 -04:00
parent 9932abd6c4
commit 604faf0995

View File

@ -82,7 +82,7 @@ func (this *Encoder) WriteIntN(value int64, bytes int) (n int, err error) {
return this.WriteUintN(uint64(value), bytes) 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, // 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 // or maybe there is one in the stdlib. keep the int64 versions as well though
// because its ergonomic. // because its ergonomic.