Skip to content

Commit ee5ec47

Browse files
committed
docs(rtk-query): Fix grammatical error in part 7
Corrects an incomplete sentence structure in the "Redux Essentials, Part 7:RTK Query Basics" documentation page. The original sentence was missing the relative pronoun "that" or a suitable participle, making it grammatically incorrect and slightly confusing.
1 parent d32970b commit ee5ec47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/essentials/part-7-rtk-query-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ import { createApi } from '@reduxjs/toolkit/query/react'
115115

116116
RTK Query primarily consists of two APIs:
117117

118-
- [`createApi()`](https://redux-toolkit.js.org/rtk-query/api/createApi): The core of RTK Query's functionality. It allows you to define a set of endpoints describe how to retrieve data from a series of endpoints, including configuration of how to fetch and transform that data. In most cases, you should use this once per app, with "one API slice per base URL" as a rule of thumb.
118+
- [`createApi()`](https://redux-toolkit.js.org/rtk-query/api/createApi): The core of RTK Query's functionality. It allows you to define a set of endpoints that describe how to retrieve data from a series of endpoints, including configuration of how to fetch and transform that data. In most cases, you should use this once per app, with "one API slice per base URL" as a rule of thumb.
119119
- [`fetchBaseQuery()`](https://redux-toolkit.js.org/rtk-query/api/fetchBaseQuery): A small wrapper around [`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) that aims to simplify HTTP requests. RTK Query can be used to cache the result of _any_ async request, but since HTTP requests are the most common use case, `fetchBaseQuery` provides HTTP support out of the box.
120120

121121
#### Bundle Size

0 commit comments

Comments
 (0)