aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJes Cok <xigua67damn@gmail.com>2023-06-15 09:50:03 +0000
committerGopher Robot <gobot@golang.org>2023-06-16 18:24:46 +0000
commitcf7ae4f1364efa0e9b93bedf127ba1ccc7664fcb (patch)
treeb35b2bfc9d031c6c18546352aa685b040b048979
parent3c8b7a95513c088f02483aa876e16263cbc7ee52 (diff)
downloadgo-cf7ae4f1364efa0e9b93bedf127ba1ccc7664fcb.tar.xz
compress/bzip2: fix typo
Remove redundant "this". Change-Id: Ia845e44119bf5ba1862f62da335466219a37c325 GitHub-Last-Rev: f0cdaf03285da8b053b71cc2911f5ab5beff580b GitHub-Pull-Request: golang/go#60807 Reviewed-on: https://go-review.googlesource.com/c/go/+/503655 Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com>
-rw-r--r--src/compress/bzip2/bit_reader.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compress/bzip2/bit_reader.go b/src/compress/bzip2/bit_reader.go
index ab1d606514..b451265475 100644
--- a/src/compress/bzip2/bit_reader.go
+++ b/src/compress/bzip2/bit_reader.go
@@ -60,7 +60,7 @@ func (br *bitReader) ReadBits64(bits uint) (n uint64) {
// |------------|
// br.bits (num valid bits)
//
- // This the next line right shifts the desired bits into the
+ // The next line right shifts the desired bits into the
// least-significant places and masks off anything above.
n = (br.n >> (br.bits - bits)) & ((1 << bits) - 1)
br.bits -= bits