diff options
| author | Robert Griesemer <gri@golang.org> | 2024-08-21 09:54:36 -0700 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-08-21 16:59:19 +0000 |
| commit | 92dd05682c514bc84352ec716280b5d3a66399e4 (patch) | |
| tree | 9a6565dab84d49a14450eae753ee0210245cfea5 /src/internal/pkgbits/encoder.go | |
| parent | 23c9efa24446186562ec23c1af7c9a549bc18362 (diff) | |
| download | go-92dd05682c514bc84352ec716280b5d3a66399e4.tar.xz | |
internal/pkgbits: fix incorrect doc comment
Change-Id: I71d1dfec11657ffa8ffe12e87f6dbd65cbb1854b
Reviewed-on: https://go-review.googlesource.com/c/go/+/607475
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
TryBot-Bypass: Robert Griesemer <gri@google.com>
Diffstat (limited to 'src/internal/pkgbits/encoder.go')
| -rw-r--r-- | src/internal/pkgbits/encoder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/pkgbits/encoder.go b/src/internal/pkgbits/encoder.go index a1489c88d0..b632b58ca0 100644 --- a/src/internal/pkgbits/encoder.go +++ b/src/internal/pkgbits/encoder.go @@ -295,7 +295,7 @@ func (w *Encoder) Len(x int) { assert(x >= 0); w.Uint64(uint64(x)) } // Int encodes and writes an int value into the element bitstream. func (w *Encoder) Int(x int) { w.Int64(int64(x)) } -// Len encodes and writes a uint value into the element bitstream. +// Uint encodes and writes a uint value into the element bitstream. func (w *Encoder) Uint(x uint) { w.Uint64(uint64(x)) } // Reloc encodes and writes a relocation for the given (section, |
