From bdab4598f783c462d917baa5618d2ec5aa06c43b Mon Sep 17 00:00:00 2001 From: Kim Junseo <53117830+cloneot@users.noreply.github.com> Date: Tue, 3 Sep 2024 15:44:32 +0900 Subject: [PATCH] Fix List merge rule description --- docs/under-the-hood/merge_rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/under-the-hood/merge_rules.md b/docs/under-the-hood/merge_rules.md index 1ebf0a59..5e05d155 100644 --- a/docs/under-the-hood/merge_rules.md +++ b/docs/under-the-hood/merge_rules.md @@ -46,7 +46,7 @@ In the following then when we say "index $x$" that really means "the ID of the e - If `A` deletes element at index $i$ and `B` updates the element at $i$ then set the value of $i$ to the updated value from `B` - If `A` and `B` both delete element $i$ then remove it from the merged list -Note that inserting a run of elements will maintain the insertion order of the replica which generated it. Imagine we have some list `[a, b]` and say `A` inserts the sequence `[d, e]` after `a` whilst `B` inserts `[f, g]` after `a`. Initially the set of operations are: +Note that inserting a run of elements will maintain the insertion order of the replica which generated it. Imagine we have some list `[a, b]` and say `A` inserts the sequence `[d, e]` after `b` whilst `B` inserts `[f, g]` after `b`. Initially the set of operations are: | Operation ID | Reference element | Value | | ------------ | ----------------- | ----- |