Skip to content

Commit

Permalink
chore: fix comment(bit-->byte)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcpdumppy authored Nov 4, 2024
1 parent 7883c2d commit 0493557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion huff0/bitreader.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (b *bitReaderBytes) init(in []byte) error {
return nil
}

// peekBitsFast requires that at least one bit is requested every time.
// peekByteFast requires that at least one byte is requested every time.
// There are no checks if the buffer is filled.
func (b *bitReaderBytes) peekByteFast() uint8 {
got := uint8(b.value >> 56)
Expand Down

0 comments on commit 0493557

Please sign in to comment.