From 50a4a613b96c95f157ef4a119f66c2823b5109cb Mon Sep 17 00:00:00 2001 From: GooseMatrix <155266802+GooseMatrix@users.noreply.github.com> Date: Wed, 22 Jan 2025 12:11:42 +0100 Subject: [PATCH] Update OVERVIEW.md --- docs/OVERVIEW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/OVERVIEW.md b/docs/OVERVIEW.md index b98d583..a304237 100644 --- a/docs/OVERVIEW.md +++ b/docs/OVERVIEW.md @@ -30,7 +30,7 @@ flowchart TD style W2 text-align:left ``` -Messages must contain implicit or explicit resource ids to handle conflicts. For example, a message updating user 123's display name can include the identifier`123.display_name`. If many messages have the same identifier, the network keeps the one with the highest order. Messages are ordered by comparing timestamps and, if they are equal, comparing hashes lexicographically. +Messages must contain implicit or explicit resource ids to handle conflicts. For example, a message updating user 123's display name can include the identifier `123.display_name`. If many messages have the same identifier, the network keeps the one with the highest order. Messages are ordered by comparing timestamps and, if they are equal, comparing hashes lexicographically. Actions such as likes are reversible by adding a _remove message_ with a higher order than the _add message_. Privacy-preserving deletes are also possible for messages that add new content such as posts. A remove message is created with the hash of the _add message_, which is then dropped by the network.