From 874fa1399ceead9a161cc87c3051908de31f1bc5 Mon Sep 17 00:00:00 2001 From: Daniel Rodriguez <44824788+DanRod1999@users.noreply.github.com> Date: Wed, 11 Jun 2025 13:31:58 -0400 Subject: [PATCH] Update ConcurrencyControl.md fix optimistic concurrency description --- docs/learning/backend/ConcurrencyControl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learning/backend/ConcurrencyControl.md b/docs/learning/backend/ConcurrencyControl.md index abfce43cf262..efe72653d016 100644 --- a/docs/learning/backend/ConcurrencyControl.md +++ b/docs/learning/backend/ConcurrencyControl.md @@ -36,7 +36,7 @@ This article assumes that you already know that: | **Conflict-resolution** | Choosing how to resolve a conflict. | | **Lock** | The right to access an Element and its descendant Elements. | | **Merge** | Apply a Changeset to a briefcase. | -| **Optimistic Concurrency Control** | A policy that allows apps to elements without acquiring locks. | +| **Optimistic Concurrency Control** | A policy that allows apps to make changes to elements without acquiring locks. | | **Pessimistic Concurrency Control** | A policy that requires apps to acquire locks before changing elements. | | **Push** | Upload a Changeset to iModelHub | | **Pull** | Download a Changeset from iModelHub. See [IModelDb synchronization](./IModelDbSync.md) |