Fix method signature for ResponseStream
This commit is contained in:
parent
b1d47ff607
commit
bb32c2006a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue