From 5e6306cc01dac544515ef06a556aed591f7b3be6 Mon Sep 17 00:00:00 2001 From: nathan-websculpt Date: Fri, 4 Jul 2025 17:02:59 -0500 Subject: [PATCH 1/5] schema: missing 'to' --- docs/docs/schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/schema.md b/docs/docs/schema.md index 8f2ecef5..3321d58f 100644 --- a/docs/docs/schema.md +++ b/docs/docs/schema.md @@ -1,6 +1,6 @@ # Schema -The Hypergraph schema allows you define the data model for your application. It is based on the GRC-20 specification and allows you to define Types with properties and relations to other Types. +The Hypergraph schema allows you to define the data model for your application. It is based on the GRC-20 specification and allows you to define Types with properties and relations to other Types. ## Example From d9770660a42a672dfecfd2487b85ef162e0c3b1f Mon Sep 17 00:00:00 2001 From: nathan-websculpt Date: Fri, 4 Jul 2025 17:03:31 -0500 Subject: [PATCH 2/5] authentication: 'a' was missing --- docs/docs/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/authentication.md b/docs/docs/authentication.md index de16f9c3..4967a222 100644 --- a/docs/docs/authentication.md +++ b/docs/docs/authentication.md @@ -2,7 +2,7 @@ ## Geo Connect -The default and recommended way to authenticate is via Geo Connect. Geo Connect is dedicated application hosted by the GeoBrowser team. Through Geo Connect you can authenticate with your GeoBrowser account and use it to selectively delegate access to your private and public spaces. +The default and recommended way to authenticate is via Geo Connect. Geo Connect is a dedicated application hosted by the GeoBrowser team. Through Geo Connect you can authenticate with your GeoBrowser account and use it to selectively delegate access to your private and public spaces. If you create you application using TypeSync or use the [hypergraph-app-template](https://github.com/graphprotocol/hypergraph-app-template) the full authentication flow is already implemented for you. From 96af76376ed3a746f387f81acac00c8000b8ec47 Mon Sep 17 00:00:00 2001 From: nathan-websculpt Date: Fri, 4 Jul 2025 17:03:52 -0500 Subject: [PATCH 3/5] providers: 'you' was missing --- docs/docs/providers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/providers.md b/docs/docs/providers.md index 75ba1143..e3f1fcdf 100644 --- a/docs/docs/providers.md +++ b/docs/docs/providers.md @@ -56,7 +56,7 @@ const App = () => { ## HypergraphSpaceProvider -Whenever 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. +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. ```tsx import { HypergraphSpaceProvider } from "@graphprotocol/hypergraph-react"; From fc455e35b2461c644d21c85dfbf0439d37b8f3b4 Mon Sep 17 00:00:00 2001 From: nathan-websculpt Date: Fri, 4 Jul 2025 17:04:15 -0500 Subject: [PATCH 4/5] key-features: missing colon --- docs/docs/key-features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/key-features.md b/docs/docs/key-features.md index 4d69de61..d83b8fff 100644 --- a/docs/docs/key-features.md +++ b/docs/docs/key-features.md @@ -36,7 +36,7 @@ Data is **persisted first on the client**—not on a remote database. Users can Every update is encrypted **on the client** using XChaCha20-Poly1305. Only members of a Space possess the symmetric key, so neither the sync server nor The Graph can read private data. -* **Automatic key rotation** when members join/leave (not yet implemented). +* **Automatic key rotation**: when members join/leave (not yet implemented). * **Multi-device**: each device holds its own key pair. ## Knowledge Graph SDK From 2dd308d3acc095fbbbe5189c7ce6745577ea4e34 Mon Sep 17 00:00:00 2001 From: nathan-websculpt Date: Fri, 4 Jul 2025 17:04:45 -0500 Subject: [PATCH 5/5] space-invitations: 'functions' changed to 'function' --- docs/docs/space-invitations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/space-invitations.md b/docs/docs/space-invitations.md index 9dee1882..7fdd712d 100644 --- a/docs/docs/space-invitations.md +++ b/docs/docs/space-invitations.md @@ -23,7 +23,7 @@ const { listInvitations } = useHypergraphApp(); listInvitations(); ``` -Once the functions is called the invitations are requested from and are available in the Hypergraph store. +Once the function is called the invitations are requested from and are available in the Hypergraph store. ```tsx import { useSelector } from "@xstate/store/react";