aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-20 01:45:57 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-20 01:45:57 -0800
commit003237b0869bb820af3c555f8421075d856f3496 (patch)
tree17858f3a2125fd33049789928653fb3f22612c4d /src
parent70f89b1bfcc751bcacf82a31682d4d1a780bba55 (diff)
downloadbun-003237b0869bb820af3c555f8421075d856f3496.tar.gz
bun-003237b0869bb820af3c555f8421075d856f3496.tar.zst
bun-003237b0869bb820af3c555f8421075d856f3496.zip
Typo
Diffstat (limited to 'src')
-rw-r--r--src/http_client_async.zig2
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;