Skip to content

Commit f0cdaf0

Browse files
committed
compress/bzip2: fix typo
1 parent 9fc8436 commit f0cdaf0

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)