Fix method signature for ResponseStream

This commit is contained in:
jaina heartles 2022-07-09 15:12:17 -07:00
parent b1d47ff607
commit bb32c2006a
1 changed files with 1 additions and 1 deletions

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);
}
};