| author | |
| committer | |
| log | f1cf300c8fa9842ec9c812310bdc9f3aeeb75359 |
| tree | 5e37855d7bbd86264bcb221b443c8f8a49664acf |
| parent | f58c59f89f9c49b29facf91937d9d78785824378 |
It incorrectly had NotWriteable and MessageTooLong in it.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/http/Server.zig+1-1| ... | ... | @@ -712,7 +712,7 @@ pub const Response = struct { |
| 712 | 712 | } |
| 713 | 713 | } |
| 714 | 714 | |
| 715 | pub const FinishError = WriteError || error{MessageNotCompleted}; | |
| 715 | pub const FinishError = Connection.WriteError || error{MessageNotCompleted}; | |
| 716 | 716 | |
| 717 | 717 | /// Finish the body of a request. This notifies the server that you have no more data to send. |
| 718 | 718 | /// Must be called after `send`. |