summaryrefslogtreecommitdiff
path: root/op_crates/fetch/23_request.js
diff options
context:
space:
mode:
Diffstat (limited to 'op_crates/fetch/23_request.js')
-rw-r--r--op_crates/fetch/23_request.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/op_crates/fetch/23_request.js b/op_crates/fetch/23_request.js
index ce42d7ac5..0e4bd2a3f 100644
--- a/op_crates/fetch/23_request.js
+++ b/op_crates/fetch/23_request.js
@@ -58,11 +58,11 @@
};
/**
- * @param {string} method
- * @param {string} url
- * @param {[string, string][]} headerList
- * @param {InnerBody} body
- * @returns
+ * @param {string} method
+ * @param {string} url
+ * @param {[string, string][]} headerList
+ * @param {InnerBody} body
+ * @returns
*/
function newInnerRequest(method, url, headerList = [], body = null) {
return {
@@ -76,7 +76,7 @@
/**
* https://fetch.spec.whatwg.org/#concept-request-clone
- * @param {InnerRequest} request
+ * @param {InnerRequest} request
* @returns {InnerRequest}
*/
function cloneInnerRequest(request) {
@@ -185,8 +185,8 @@
/**
* https://fetch.spec.whatwg.org/#dom-request
- * @param {RequestInfo} input
- * @param {RequestInit} init
+ * @param {RequestInfo} input
+ * @param {RequestInit} init
*/
constructor(input, init = {}) {
const prefix = "Failed to construct 'Request'";