diff options
-rw-r--r-- | src/http_client_async.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http_client_async.zig b/src/http_client_async.zig index 4d46f41b9..743be4558 100644 --- a/src/http_client_async.zig +++ b/src/http_client_async.zig @@ -1831,7 +1831,7 @@ fn handleResponseBodyChunkedEncodingFromMultiplePackets( unreachable; } -// the first packet for Transfer-Encoding: chunk +// the first packet for Transfer-Encoding: chunked // is usually pretty small or sometimes even just a length // so we can avoid allocating a temporary buffer to copy the data in var single_packet_small_buffer: [16 * 1024]u8 = undefined; |