]> Cypherpunks.ru repositories - gostls13.git/commitdiff
compress/bzip2: fix typo
authorJes Cok <xigua67damn@gmail.com>
Thu, 15 Jun 2023 09:50:03 +0000 (09:50 +0000)
committerGopher Robot <gobot@golang.org>
Fri, 16 Jun 2023 18:24:46 +0000 (18:24 +0000)
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 <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>

src/compress/bzip2/bit_reader.go

index ab1d60651436bd5a0b8118b46d5bb7f58c24869a..b4512654755bb231c187a9df2c83b3113e704ad4 100644 (file)
@@ -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