add docs for bun publish (#14327)

This commit is contained in:
Dylan Conway
2024-10-03 03:41:11 -07:00
committed by GitHub
parent eda608d629
commit 39b1c0111e
12 changed files with 341 additions and 91 deletions

View File

@@ -1996,7 +1996,7 @@ pub const Example = struct {
var is_expected_content_type = false;
var content_type: string = "";
for (response.headers) |header| {
for (response.headers.list) |header| {
if (strings.eqlCaseInsensitiveASCII(header.name, "content-type", true)) {
content_type = header.value;