zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit da6d79c47c2d655ae30bed8bcef48134de8d157a (tree)
parent c2d37224c843feb84f4522ec35d192968b786e08
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Mon,  9 Jan 2023 22:31:27 -0700

water cooler complaint about gzip stream namespace

Diffstat:
Mlib/std/compress/gzip.zig | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/lib/std/compress/gzip.zig b/lib/std/compress/gzip.zig @@ -17,6 +17,9 @@ const FCOMMENT = 1 << 4; const max_string_len = 1024; +/// TODO: the fully qualified namespace to this declaration is +/// std.compress.gzip.GzipStream which has a redundant "gzip" in the name. +/// Instead, it should be `std.compress.gzip.Stream`. pub fn GzipStream(comptime ReaderType: type) type { return struct { const Self = @This();