Fix typo in error

This commit is contained in:
Jarred Sumner
2021-09-27 16:08:34 -07:00
parent 54dc9cfc8b
commit 97ad21dc68

View File

@@ -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();