Skip to content

Commit

Permalink
fix broken link to glossary
Browse files Browse the repository at this point in the history
  • Loading branch information
pdaoust committed Mar 25, 2024
1 parent 4ebc573 commit f4b8ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/build/guide/entries.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ enum EntryTypes {
Each variant in the enum holds the Rust type that defines the shape of the entry, and is implicitly marked with an `entry_def` proc macro which, if you specify it explicitly, lets you configure the given entry type further:

* An entry type can be configured as **private**, which means that it's never published to the DHT, but exists only on the author's source chain. To do this, use a `visibility = "private"` argument.
* A public entry type can be configured to expect a certain number of **required validations**, which is the number of [validation receipts](/references/glossary/#validation-receipt) that an author tries to collect from authorities before they consider their entry published on the DHT. To do this, use a `required_validations = <num>` argument.
* A public entry type can be configured to expect a certain number of **required validations**, which is the number of [validation receipts](/resources/glossary/#validation-receipt) that an author tries to collect from authorities before they consider their entry published on the DHT. To do this, use a `required_validations = <num>` argument.
* You can override the name of an entry type, which defaults to the name of the enum variant.

```rust
Expand Down

0 comments on commit f4b8ac6

Please sign in to comment.