Skip to content

Commit 91f2184

Browse files
phryneasmsutkowski
andcommitted
Apply suggestions from code review
Co-authored-by: Matt Sutkowski <[email protected]>
1 parent 5910ca1 commit 91f2184

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/rtk-query/api/fetchBaseQuery.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ It takes all standard options from fetch's [`RequestInit`](https://developer.moz
3939
- `fetchFn` _(optional)_
4040
- A fetch function that overrides the default on the window. Can be useful in SSR environments where you may need to leverage `isomorphic-fetch` or `cross-fetch`.
4141
- `timeout` _(optional)_
42-
- A number in milliseconds that represents that maximum time a request can take before timing out.
42+
- A number in milliseconds that represents the maximum time a request can take before timing out.
4343

4444
```ts title="Return types of fetchBaseQuery" no-transpile
4545
Promise<{

packages/toolkit/src/query/fetchBaseQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export type FetchBaseQueryMeta = { request: Request; response?: Response }
175175
* An optional function that can be used to stringify querystring parameters.
176176
*
177177
* @param {number} timeout
178-
* A number in milliseconds that represents that maximum time a request can take before timing out.
178+
* A number in milliseconds that represents the maximum time a request can take before timing out.
179179
*/
180180
export function fetchBaseQuery({
181181
baseUrl,

0 commit comments

Comments
 (0)