Skip to content

Commit

Permalink
docs: modify typo (#7011)
Browse files Browse the repository at this point in the history
* docs: modify typo

* docs: modify typo
  • Loading branch information
hjick committed Mar 3, 2024
1 parent 1352663 commit ec90029
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/framework/react/guides/prefetching.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Infinite Queries can be prefetched like regular Queries. Per default, only the f
[//]: # 'ExamplePrefetchInfiniteQuery'

```tsx
const prefetchTodos = async () => {
const prefetchProjects = async () => {
// The results of this query will be cached like a normal query
await queryClient.prefetchInfiniteQuery({
queryKey: ['projects'],
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/vue/guides/prefetching.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Infinite Queries can be prefetched like regular Queries. Per default, only the f
[//]: # 'ExampleInfiniteQuery'

```tsx
const prefetchTodos = async () => {
const prefetchProjects = async () => {
// The results of this query will be cached like a normal query
await queryClient.prefetchInfiniteQuery({
queryKey: ['projects'],
Expand Down

0 comments on commit ec90029

Please sign in to comment.