From 80908bdea219ac3d97ec06c1a9268361f6e6c1c9 Mon Sep 17 00:00:00 2001 From: wbamberg Date: Wed, 26 Jun 2024 15:39:43 -0700 Subject: [PATCH] Update files/en-us/web/api/requestinit/index.md --- files/en-us/web/api/requestinit/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/requestinit/index.md b/files/en-us/web/api/requestinit/index.md index 072e7c1233b6483..7817b6fb27a6d91 100644 --- a/files/en-us/web/api/requestinit/index.md +++ b/files/en-us/web/api/requestinit/index.md @@ -10,7 +10,7 @@ spec-urls: https://fetch.spec.whatwg.org/#requestinit The **`RequestInit`** dictionary of the [Fetch API](/en-US/docs/Web/API/Fetch_API) represents the set of options that can be used to configure a Fetch request. -You can pass an instance of `RequestInit` into the {{domxref("Request.Request()", "Request()")}} constructor, or directly into the [`fetch()`](/en-US/docs/Web/API/fetch) function call. +You can pass a `RequestInit` object into the {{domxref("Request.Request()", "Request()")}} constructor, or directly into the [`fetch()`](/en-US/docs/Web/API/fetch) function call. You can also construct a `Request` with a `RequestInit`, and pass the `Request` to a `fetch()` call along with another `RequestInit`. If you do this, and the same option is set in both places, then the value passed directly into `fetch()` is used.