From 567463d1fd5f712ce83cd307b73bb3db38f5691b Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Thu, 25 Jun 2026 16:22:44 +0200 Subject: [PATCH] doc(common): Fix a typo in `changelog.d/6674.fixed.md` Signed-off-by: Ivan Enderlin --- crates/matrix-sdk-common/changelog.d/6674.fixed.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-common/changelog.d/6674.fixed.md b/crates/matrix-sdk-common/changelog.d/6674.fixed.md index e8c1f4239..71ba23efd 100644 --- a/crates/matrix-sdk-common/changelog.d/6674.fixed.md +++ b/crates/matrix-sdk-common/changelog.d/6674.fixed.md @@ -6,5 +6,5 @@ that when a `CrossProcessLock` is dropped, all `CrossProcessLockGuard`s report 0 holder, and thus, the lock is released, but it's wrong. As long as guards are alive, the lock **MUST NOT** be released. Dropping all the guards releases the lock, but dropping the `CrossProcessLock` —which is not the lock in itself— must -not dropped the acquired lock. +not drop the acquired lock. There is no public changes, but the incorrect behaviour is now fixed.