From 93f00261d057d80f05df8208df3e92acdea1eac5 Mon Sep 17 00:00:00 2001 From: Anup Cowkur Date: Mon, 22 Aug 2022 22:26:41 +0530 Subject: [PATCH] Fix typo in runTest method docs --- kotlinx-coroutines-test/common/src/TestBuilders.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlinx-coroutines-test/common/src/TestBuilders.kt b/kotlinx-coroutines-test/common/src/TestBuilders.kt index 80dc8d6083..cb677811c9 100644 --- a/kotlinx-coroutines-test/common/src/TestBuilders.kt +++ b/kotlinx-coroutines-test/common/src/TestBuilders.kt @@ -57,7 +57,7 @@ public expect class TestResult * * The test is run in a single thread, unless other [CoroutineDispatcher] are used for child coroutines. * Because of this, child coroutines are not executed in parallel to the test body. - * In order to for the spawned-off asynchronous code to actually be executed, one must either [yield] or suspend the + * In order for the spawned-off asynchronous code to actually be executed, one must either [yield] or suspend the * test body some other way, or use commands that control scheduling (see [TestCoroutineScheduler]). * * ```