Fix method signature for ResponseStream

This commit is contained in:
jaina heartles 2022-07-09 15:12:17 -07:00
parent b1d47ff607
commit bb32c2006a

View file

@ -138,7 +138,7 @@ pub fn ResponseStream(comptime BaseWriter: type) type {
} }
} }
pub fn close(self: *const Self) void { pub fn close(self: *Self) void {
self.allocator.free(self.buffer); self.allocator.free(self.buffer);
} }
}; };