aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/common/src/sync/Mutex.kt
diff options
context:
space:
mode:
Diffstat (limited to 'kotlinx-coroutines-core/common/src/sync/Mutex.kt')
-rw-r--r--kotlinx-coroutines-core/common/src/sync/Mutex.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/kotlinx-coroutines-core/common/src/sync/Mutex.kt b/kotlinx-coroutines-core/common/src/sync/Mutex.kt
index 204e0395..b58885c7 100644
--- a/kotlinx-coroutines-core/common/src/sync/Mutex.kt
+++ b/kotlinx-coroutines-core/common/src/sync/Mutex.kt
@@ -88,7 +88,7 @@ public interface Mutex {
}
/**
- * Creates new [Mutex] instance.
+ * Creates a [Mutex] instance.
* The mutex created is fair: lock is granted in first come, first served order.
*
* @param locked initial state of the mutex.