From 64d164a9046ccc863e2baa02871dc621e10665f7 Mon Sep 17 00:00:00 2001 From: Nik Graf Date: Fri, 8 Oct 2021 17:09:20 +0200 Subject: [PATCH] escape the plus to not interpret it as a list item --- INTERNALS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INTERNALS.md b/INTERNALS.md index da96507d..45e987b6 100644 --- a/INTERNALS.md +++ b/INTERNALS.md @@ -168,7 +168,7 @@ An implementation of the syncing process is in ## Snapshots A snapshot can be used to restore an old document state. It is a `state vector` -+ `delete set`. I client can restore an old document state by iterating through +\+ `delete set`. I client can restore an old document state by iterating through the sequence CRDT and ignoring all Items that have an `id.clock > stateVector[id.client].clock`. Instead of using `item.deleted` the client will use the delete set to find out if an item was deleted or not.