From 4c19dbc34f9a819a3014bb75c1a39132a86db6c2 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 14 Feb 2024 11:28:32 +0100 Subject: [PATCH] xhr: fix content-type header typo --- src/xhr/xhr.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xhr/xhr.zig b/src/xhr/xhr.zig index 5a34566d..b6119c06 100644 --- a/src/xhr/xhr.zig +++ b/src/xhr/xhr.zig @@ -56,8 +56,8 @@ pub const XMLHttpRequestBodyInit = union(XMLHttpRequestBodyInitTag) { .Blob => error.NotImplemented, .BufferSource => error.NotImplemented, .FormData => "multipart/form-data; boundary=TODO", - .URLSearchParams => "application/x-www-form-urlencoded;charset=UTF-8", - .String => "text/plain;charset=UTF-8", + .URLSearchParams => "application/x-www-form-urlencoded; charset=UTF-8", + .String => "text/plain; charset=UTF-8", }; }