From 97ad21dc680d62bc7e5bec2982fa27a3a9a49b95 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Mon, 27 Sep 2021 16:08:34 -0700 Subject: [PATCH] Fix typo in error --- src/javascript/jsc/webcore/response.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/javascript/jsc/webcore/response.zig b/src/javascript/jsc/webcore/response.zig index 86b2c41e18..8073921b17 100644 --- a/src/javascript/jsc/webcore/response.zig +++ b/src/javascript/jsc/webcore/response.zig @@ -333,7 +333,7 @@ pub const Fetch = struct { const JSType = js.JSType; const fetch_error_no_args = "fetch() expects a string but received no arguments."; - const fetch_error_blank_url = "fetch() URL must not be blank string."; + const fetch_error_blank_url = "fetch() URL must not be a blank string."; const JSTypeErrorEnum = std.enums.EnumArray(JSType, string); const fetch_type_error_names: JSTypeErrorEnum = brk: { var errors = JSTypeErrorEnum.initUndefined();