Skip to content

Commit cf7ae4f

Browse files
callthingsoffgopherbot
authored andcommitted
compress/bzip2: fix typo
Remove redundant "this". Change-Id: Ia845e44119bf5ba1862f62da335466219a37c325 GitHub-Last-Rev: f0cdaf0 GitHub-Pull-Request: #60807 Reviewed-on: https://go-review.googlesource.com/c/go/+/503655 Reviewed-by: Ian Lance Taylor <[email protected]> Reviewed-by: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]>
1 parent 3c8b7a9 commit cf7ae4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compress/bzip2/bit_reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (br *bitReader) ReadBits64(bits uint) (n uint64) {
6060
// |------------|
6161
// br.bits (num valid bits)
6262
//
63-
// This the next line right shifts the desired bits into the
63+
// The next line right shifts the desired bits into the
6464
// least-significant places and masks off anything above.
6565
n = (br.n >> (br.bits - bits)) & ((1 << bits) - 1)
6666
br.bits -= bits

0 commit comments

Comments
 (0)