Skip to content

Commit ea83463

Browse files
committed
std.compress.zstd: fix decompressStreamOptions
1 parent c0fa9fc commit ea83463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/compress/zstandard.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ pub fn decompressStreamOptions(
238238
allocator: Allocator,
239239
reader: anytype,
240240
comptime options: DecompressStreamOptions,
241-
) DecompressStream(@TypeOf(reader, options)) {
241+
) DecompressStream(@TypeOf(reader), options) {
242242
return DecompressStream(@TypeOf(reader), options).init(allocator, reader);
243243
}
244244

0 commit comments

Comments
 (0)