Skip to content

Commit c45c278

Browse files
authored
Fix typos in docs (#389)
1 parent 65f1476 commit c45c278

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/docs/providers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Further it has an optional prop: `syncServerUri`. This is the URL of the sync se
2222

2323
## useHypergraphApp
2424

25-
The `useHypergraphApp` is available inside the `HypergraphAppProvider` and manages the sync server connection and provides serveral useful functions.
25+
The `useHypergraphApp` is available inside the `HypergraphAppProvider` and manages the sync server connection and provides several useful functions.
2626

2727
```tsx
2828
import { useHypergraphApp } from "@graphprotocol/hypergraph-react";
@@ -36,11 +36,11 @@ const App = () => {
3636
- `isConnecting` is a boolean that indicates that syncing private spaces is not yet possible. You need to wait until it's `false` to query data from private spaces.
3737
- `logout` is a function that logs out the user.
3838
39-
There are serveral more that will be explained in the following sections.
39+
There are several more that will be explained in the following sections.
4040
4141
## useHypergraphAuth
4242
43-
The `useHypergraphAuth` is available inside the `HypergraphAppProvider` and manages the authentication state and provides serveral useful functions.
43+
The `useHypergraphAuth` is available inside the `HypergraphAppProvider` and manages the authentication state and provides several useful functions.
4444
4545
```tsx
4646
import { useHypergraphAuth } from "@graphprotocol/hypergraph-react";
@@ -56,7 +56,7 @@ const App = () => {
5656
5757
## HypergraphSpaceProvider
5858
59-
Whenever you interact with a space you need to provide the space ID. In order providing the space ID to every hook e.g. useSpace, useQuery, useCreateEntity, etc. you can use the `HypergraphSpaceProvider` to wrap a section of your app with the space ID.
59+
Whenever you interact with a space you need to provide the space ID. Instead of providing the space ID to every hook e.g. useSpace, useQuery, useCreateEntity, etc. you can use the `HypergraphSpaceProvider` to wrap a section of your app with the space ID.
6060
6161
```tsx
6262
import { HypergraphSpaceProvider } from "@graphprotocol/hypergraph-react";

0 commit comments

Comments
 (0)