Skip to content

Commit 608d81b

Browse files
committed
fix typo on crud page
1 parent 6b264e7 commit 608d81b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/concepts/6_crud_actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This prevents clashes between attempts to delete identical entries written by di
5151

5252
### Resolving conflicts in a conflict-free database
5353

54-
You may be thinking, if an entry can accumulate multiple update and delete actions, which is the _right_ entry? The answer is that it's up to your application to decide. You may want to preserve all revisions and show them as a tree, allowing people to follow whichever path they prefer. You may want to write a simple conflict-resolution mechanism into your getter functions, such as "the earliest one wins" or "deletes always override updates". Or you may want to incorporate automatic merge functions that apply all updates to the thing being updated, such as a [conflict-free replicated data type (CRDT_](https://crdt.tech/).
54+
You may be thinking, if an entry can accumulate multiple update and delete actions, which is the _right_ entry? The answer is that it's up to your application to decide. You may want to preserve all revisions and show them as a tree, allowing people to follow whichever path they prefer. You may want to write a simple conflict-resolution mechanism into your getter functions, such as "the earliest one wins" or "deletes always override updates". Or you may want to incorporate automatic merge functions that apply all updates to the thing being updated, such as a [conflict-free replicated data type (CRDT)](https://crdt.tech/).
5555

5656
You'll also want to decide whether the primary units of data in your DHT are _entries_ or _actions_ (that is, entry plus author plus timestamp). There are appropriate places to use each, but that's beyond the reach of this introduction.
5757

@@ -90,4 +90,4 @@ Finally, data that's invalid (we'll learn about that in the [next section](../7_
9090

9191
### Next Up
9292

93-
[Explore validation →](../7_validation/){.btn-purple}
93+
[Explore validation →](../7_validation/){.btn-purple}

0 commit comments

Comments
 (0)