Skip to content

Commit

Permalink
tiny README.md fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Mar 6, 2024
1 parent c2b224f commit f622570
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ Once inserted into `inbox`, [inbox.Queue](https://pkg.go.dev/github.com/dimkr/to
* Adds new posts received in `Create` activities to `notes`
* Edits post in `notes` according to `Update` activities
* Records `Announce` activities in `shares`
* Marks follower-followed relationships in `follow` as accepted, when the followed user sends an `Accept` activity
* Adds a new row to `follow` when a remote user sends a `Follow` activity to a local user
* Marks a follower-followed relationship in `follows` as accepted, when the followed user sends an `Accept` activity
* Adds a new row to `follows` when a remote user sends a `Follow` activity to a local user
* ...

```
Expand Down Expand Up @@ -345,7 +345,7 @@ Once inserted into `inbox`, [inbox.Queue](https://pkg.go.dev/github.com/dimkr/to
└──────────────────────────────────────────────────┘
```

When a user replies in a thread started by a local user, the received [Activity](https://pkg.go.dev/github.com/dimkr/tootik/ap#Activity) is inserted into `outbox`, so all followers of the local user can see this reply.
When a remote user replies in a thread started by a local user, the received [Activity](https://pkg.go.dev/github.com/dimkr/tootik/ap#Activity) is inserted into `outbox`, so all followers of the local user can see this reply.

```
┌───────────────┐
Expand Down Expand Up @@ -373,7 +373,7 @@ When a user replies in a thread started by a local user, the received [Activity]
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
```

To display details like the user's name and speed up the verification of incoming replies, [inbox.Queue](https://pkg.go.dev/github.com/dimkr/tootik/inbox#Queue) uses [Resolver](https://pkg.go.dev/github.com/dimkr/tootik/fed#Resolver) to fetch the [Actor](https://pkg.go.dev/github.com/dimkr/tootik/ap#Actor) objects of mentioned users (if needed).
To display details like the user's name and speed up the verification of future incoming replies, [inbox.Queue](https://pkg.go.dev/github.com/dimkr/tootik/inbox#Queue) uses [Resolver](https://pkg.go.dev/github.com/dimkr/tootik/fed#Resolver) to fetch the [Actor](https://pkg.go.dev/github.com/dimkr/tootik/ap#Actor) objects of mentioned users (if needed).

## More Documentation

Expand Down

0 comments on commit f622570

Please sign in to comment.