Skip to content

Commit ce75954

Browse files
fix(soc and feeds): grammer improvements from PR #41 (#42)
1 parent 70b2ea7 commit ce75954

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/user-documentation/soc-and-feeds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export type Signer = {
5555
```
5656
5757
:::warning Your communication privacy may be at risk
58-
We suggest using either ephemeral private keys (e.g., randomly generated) or the `Signer` interface when writing to SOC or Feeds. Never use your real Ethereum private keys here (or in any web applications really) directly because you may lose your funds stored on it.
58+
We suggest using either ephemeral private keys (e.g. randomly generated) or the `Signer` interface when writing to SOC or Feeds. Never use your real Ethereum private keys here (or in any web applications really) directly because you may lose your funds stored on it.
5959
:::
6060
6161
Using the writer interface is similar to using the reader:
@@ -76,7 +76,7 @@ One of the most common use cases for feeds is to store mutable data in an immuta
7676

7777
A feed is defined by its `owner` (see above), a `topic` (32 bytes arbitrary data as a hex string or `Uint8Array`), and a `type`. `type` defines how the updates and lookup of the feed index are made (currently only the `sequence` type is supported).
7878

79-
The publisher is the owner of the feed, and only he can post updates to the feed. Posting an update requires (1) constructing the identifier from the topic and the correct index and (2) signing it concatenated together with the hash of the arbitrary content of the update.
79+
The publisher is the owner of the feed, and only they can post updates to the feed. Posting an update requires (1) constructing the identifier from the topic and the correct index and (2) signing it concatenated together with the hash of the arbitrary content of the update.
8080

8181
Conversely, users can consume a feed by retrieving the chunk by its address. Retrieving an update requires the consumer to construct the address from the owner’s address and the identifier. To calculate the identifier, they need the topic and the appropriate index. For this, they need to know the indexing scheme.
8282

0 commit comments

Comments
 (0)