| author | |
| committer | |
| log | da6d79c47c2d655ae30bed8bcef48134de8d157a |
| tree | aa9afe9271da8f028f63ebcc6137b470c38bc63c |
| parent | c2d37224c843feb84f4522ec35d192968b786e08 |
1 files changed, 3 insertions(+), 0 deletions(-)
lib/std/compress/gzip.zig+3| ... | ... | @@ -17,6 +17,9 @@ const FCOMMENT = 1 << 4; |
| 17 | 17 | |
| 18 | 18 | const max_string_len = 1024; |
| 19 | 19 | |
| 20 | /// TODO: the fully qualified namespace to this declaration is | |
| 21 | /// std.compress.gzip.GzipStream which has a redundant "gzip" in the name. | |
| 22 | /// Instead, it should be `std.compress.gzip.Stream`. | |
| 20 | 23 | pub fn GzipStream(comptime ReaderType: type) type { |
| 21 | 24 | return struct { |
| 22 | 25 | const Self = @This(); |