diff options
| author | 2026-02-21 20:55:37 +0800 | |
|---|---|---|
| committer | 2026-02-21 20:55:37 +0800 | |
| commit | 2cb9c32187f0f14f38ab8124466f0ad17f77c5d0 (patch) | |
| tree | d747cfe22f48a5c134906eb9efed99c471491be8 /internal/zlib/reader.go | |
| parent | internal/zlib: Fix lints (diff) | |
| signature | No signature | |
*: Fix nosec
Diffstat (limited to 'internal/zlib/reader.go')
| -rw-r--r-- | internal/zlib/reader.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/zlib/reader.go b/internal/zlib/reader.go index 62fe57a7..6e70fdea 100644 --- a/internal/zlib/reader.go +++ b/internal/zlib/reader.go @@ -131,7 +131,7 @@ func (z *reader) Read(p []byte) (int, error) { return n, io.EOF } -// Calling Close does not close the wrapped [io.Reader] originally passed to [NewReader]. +// Close does not close the wrapped [io.Reader] originally passed to [NewReader]. // In order for the ZLIB checksum to be verified, the reader must be // fully consumed until the [io.EOF]. func (z *reader) Close() error { |
