From 193a78db4001552ff771404ef00f7d29c690a14a Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Fri, 14 Nov 2025 18:36:26 +0100 Subject: [PATCH] synchronization: Fix a typo --- docs/cpp/guides/synchronization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cpp/guides/synchronization.md b/docs/cpp/guides/synchronization.md index 29a37e08..00b65f02 100644 --- a/docs/cpp/guides/synchronization.md +++ b/docs/cpp/guides/synchronization.md @@ -404,7 +404,7 @@ The call `mu.LockWhen(Condition(f, arg))` is equivalent to The variants `LockWhenWithTimeout()` and `AwaitWithTimeout()` allow a thread to wait either for a condition to become true or for some time to elapse. They each -return `true` iff the condition is true: +return `true` if the condition is true: ```cpp if (mu.LockWhenWithTimeout(Condition(f, &cond_expr), 1000 /*ms*/)) {