aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/common/src/sync/Mutex.kt
diff options
context:
space:
mode:
authorInego <yanis.batura@gmail.com>2019-04-21 14:26:40 +0700
committerRoman Elizarov <elizarov@gmail.com>2019-04-21 13:24:31 +0300
commit6da0ccd65bb2d3e12e5f9dfe82f26e62930b07df (patch)
tree75f2c20c42c93eab8abb76c908618d3af293e7a6 /kotlinx-coroutines-core/common/src/sync/Mutex.kt
parent596187e553f999562aef35856cfd12e0b022b193 (diff)
downloadplatform_external_kotlinx.coroutines-6da0ccd65bb2d3e12e5f9dfe82f26e62930b07df.tar.gz
platform_external_kotlinx.coroutines-6da0ccd65bb2d3e12e5f9dfe82f26e62930b07df.tar.bz2
platform_external_kotlinx.coroutines-6da0ccd65bb2d3e12e5f9dfe82f26e62930b07df.zip
Change "create new" to "create a"
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.