Commit da6d79c47c

Andrew Kelley <andrew@ziglang.org>
2023-01-10 06:31:27
water cooler complaint about gzip stream namespace
1 parent c2d3722
Changed files (1)
lib
std
compress
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();