compress/bzip2: fix typo

Remove redundant "this".

Change-Id: Ia845e44119bf5ba1862f62da335466219a37c325
GitHub-Last-Rev: f0cdaf0328
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>
This commit is contained in:
Jes Cok 2023-06-15 09:50:03 +00:00 committed by Gopher Robot
parent 3c8b7a9551
commit cf7ae4f136
1 changed files with 1 additions and 1 deletions

View File

@ -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