fix: 🐛 Fix build crashing because of dead links

This commit is contained in:
Jesse Wierzbinski 2024-05-01 17:44:05 -10:00
parent ead52e6d33
commit 6a512684c5
No known key found for this signature in database
4 changed files with 18 additions and 18 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -35,7 +35,7 @@ Here's an example of an `Announce` action:
| :----- | :----- | :------- |
| author | String | Yes |
URI of the [Actor](./actors) who initiated the action.
URI of the [Actor](../objects/actors) who initiated the action.
#### Object
@ -43,7 +43,7 @@ URI of the [Actor](./actors) who initiated the action.
| :----- | :----- | :------- |
| object | String | Yes |
URI of the object being announced. Must be of type [Note](./note)
URI of the object being announced. Must be of type [Note](../objects/note)
#### Implementation

View file

@ -28,7 +28,7 @@ The words **MUST**, **MUST NOT**, **SHOULD**, **SHOULD NOT**, and **MAY** are us
- **Actor**: An individual or entity utilizing the Lysand protocol, analogous to ActivityPub's `Actor` objects. An actor could be a [Server Actor](federation/server-actor), representing a server, or a [User Actor](objects/actors).
- **Server**: A server that deploys the Lysand protocol, referred to as an **implementation**. Servers are also known as **instances** when referring to the deployed form.
- **Entity**: A generic term for any object in the Lysand protocol, such as an [Actor](objects/actors), [Note](objects/publications), or [Attachment](objects/attachments).
- **Entity**: A generic term for any object in the Lysand protocol, such as an [Actor](objects/actors), [Note](objects/publications), or [Like](objects/like).
# Implementation Requirements