mirror of
https://github.com/golang/go.git
synced 2026-02-04 09:55:06 +03:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user