diff options
Diffstat (limited to 'ext/fetch')
-rw-r--r-- | ext/fetch/20_headers.js | 2 | ||||
-rw-r--r-- | ext/fetch/23_request.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/fetch/20_headers.js b/ext/fetch/20_headers.js index e8a658d67..11a5d29b4 100644 --- a/ext/fetch/20_headers.js +++ b/ext/fetch/20_headers.js @@ -210,7 +210,7 @@ const value = entry[1]; if (value === null) throw new TypeError("Unreachable"); // The following if statement is not spec compliant. - // `set-cookie` is the only header that can not be concatentated, + // `set-cookie` is the only header that can not be concatenated, // so must be given to the user as multiple headers. // The else block of the if statement is spec compliant again. if (name === "set-cookie") { diff --git a/ext/fetch/23_request.js b/ext/fetch/23_request.js index 9672287df..b61f46c61 100644 --- a/ext/fetch/23_request.js +++ b/ext/fetch/23_request.js @@ -401,7 +401,7 @@ return webidl.converters["Request"](V, opts); } } - // Passed to new URL(...) which implictly converts DOMString -> USVString + // Passed to new URL(...) which implicitly converts DOMString -> USVString return webidl.converters["DOMString"](V, opts); }; webidl.converters["RequestRedirect"] = webidl.createEnumConverter( |