From: Jes Cok Date: Thu, 15 Jun 2023 09:50:03 +0000 (+0000) Subject: compress/bzip2: fix typo X-Git-Tag: go1.21rc2~1^2~17 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cf7ae4f1364efa0e9b93bedf127ba1ccc7664fcb;p=gostls13.git compress/bzip2: fix typo Remove redundant "this". Change-Id: Ia845e44119bf5ba1862f62da335466219a37c325 GitHub-Last-Rev: f0cdaf03285da8b053b71cc2911f5ab5beff580b GitHub-Pull-Request: golang/go#60807 Reviewed-on: https://go-review.googlesource.com/c/go/+/503655 Reviewed-by: Ian Lance Taylor Reviewed-by: Bryan Mills TryBot-Result: Gopher Robot Run-TryBot: Ian Lance Taylor Auto-Submit: Ian Lance Taylor --- diff --git a/src/compress/bzip2/bit_reader.go b/src/compress/bzip2/bit_reader.go index ab1d606514..b451265475 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