Skip to content

Commit 1427b1e

Browse files
authored
docs: fix typos (TanStack#2618)
1 parent 0c84afe commit 1427b1e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/src/pages/comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Comparison | React Query vs SWR vs Apollo vs RTK Query
88
Feature/Capability Key:
99

1010
- ✅ 1st-class, built-in, and ready to use with no added configuration or code
11-
- 🟡 Supported, but as an unoffical 3rd party or community library/contribution
11+
- 🟡 Supported, but as an unofficial 3rd party or community library/contribution
1212
- 🔶 Supported and documented, but requires extra user-code to implement
1313
- 🛑 Not officially supported or documented.
1414

docs/src/pages/guides/suspense.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In addition to queries behaving differently in suspense mode, mutations also beh
4545

4646
## Resetting Error Boundaries
4747

48-
Whether you are using **suspense** or **useErrorBoundaries** in your queries, you will need a way to let queries know that you want to try again when re-rendering after some error occured.
48+
Whether you are using **suspense** or **useErrorBoundaries** in your queries, you will need a way to let queries know that you want to try again when re-rendering after some error occurred.
4949

5050
Query errors can be reset with the `QueryErrorResetBoundary` component or with the `useQueryErrorResetBoundary` hook.
5151

docs/src/pages/guides/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This will set the defaults for all queries in the component tree to "no retries"
7070

7171
## Turn off network error logging
7272

73-
When testing we want to supress network errors being logged to the console.
73+
When testing we want to suppress network errors being logged to the console.
7474
To do this, we can use `react-query`'s `setLogger()` function.
7575

7676
```ts

docs/src/pages/reference/QueryErrorResetBoundary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: QueryErrorResetBoundary
33
title: QueryErrorResetBoundary
44
---
55

6-
When using **suspense** or **useErrorBoundaries** in your queries, you need a way to let queries know that you want to try again when re-rendering after some error occured. With the `QueryErrorResetBoundary` component you can reset any query errors within the boundaries of the component.
6+
When using **suspense** or **useErrorBoundaries** in your queries, you need a way to let queries know that you want to try again when re-rendering after some error occurred. With the `QueryErrorResetBoundary` component you can reset any query errors within the boundaries of the component.
77

88
```js
99
import { QueryErrorResetBoundary } from 'react-query'

0 commit comments

Comments
 (0)