diff --git a/src/compress/bzip2/bit_reader.go b/src/compress/bzip2/bit_reader.go index ab1d60651436bd..b4512654755bb2 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