From 2bd087ab1b2c2047b1681b8bb369a1f8acf30019 Mon Sep 17 00:00:00 2001 From: Satya Rohith Date: Wed, 28 Apr 2021 19:38:51 +0530 Subject: chore: upgrade dprint plugins (#10397) --- op_crates/fetch/26_fetch.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'op_crates/fetch/26_fetch.js') diff --git a/op_crates/fetch/26_fetch.js b/op_crates/fetch/26_fetch.js index a6d1608d0..cd86d6023 100644 --- a/op_crates/fetch/26_fetch.js +++ b/op_crates/fetch/26_fetch.js @@ -32,8 +32,8 @@ ]; /** - * @param {{ method: string, url: string, headers: [string, string][], clientRid: number | null, hasBody: boolean }} args - * @param {Uint8Array | null} body + * @param {{ method: string, url: string, headers: [string, string][], clientRid: number | null, hasBody: boolean }} args + * @param {Uint8Array | null} body * @returns {{ requestRid: number, requestBodyRid: number | null }} */ function opFetch(args, body) { @@ -41,7 +41,7 @@ } /** - * @param {number} rid + * @param {number} rid * @returns {Promise<{ status: number, statusText: string, headers: [string, string][], url: string, responseRid: number }>} */ function opFetchSend(rid) { @@ -49,8 +49,8 @@ } /** - * @param {number} rid - * @param {Uint8Array} body + * @param {number} rid + * @param {Uint8Array} body * @returns {Promise} */ function opFetchRequestWrite(rid, body) { @@ -58,8 +58,8 @@ } /** - * @param {number} rid - * @param {Uint8Array} body + * @param {number} rid + * @param {Uint8Array} body * @returns {Promise} */ function opFetchResponseRead(rid, body) { @@ -105,7 +105,7 @@ } /** - * @param {InnerRequest} req + * @param {InnerRequest} req * @param {boolean} recursive * @returns {Promise} */ @@ -268,8 +268,8 @@ } /** - * @param {RequestInfo} input - * @param {RequestInit} init + * @param {RequestInfo} input + * @param {RequestInit} init */ async function fetch(input, init = {}) { const prefix = "Failed to call 'fetch'"; -- cgit v1.2.3