From 9b05507e4d31f6af7d76864f3c34f16a7869e2aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20W=C3=BCnsche?= Date: Fri, 4 Mar 2022 16:27:18 +0000 Subject: [PATCH] Fix typo --- kotlinx-coroutines-test/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlinx-coroutines-test/README.md b/kotlinx-coroutines-test/README.md index d913ed0154..7b6cf7308c 100644 --- a/kotlinx-coroutines-test/README.md +++ b/kotlinx-coroutines-test/README.md @@ -11,7 +11,7 @@ This package provides utilities for efficiently testing coroutines. | [runTest] | Runs the test code, automatically skipping delays and handling uncaught exceptions. | | [TestCoroutineScheduler] | The shared source of virtual time, used for controlling execution order and skipping delays. | | [TestScope] | A [CoroutineScope] that integrates with [runTest], providing access to [TestCoroutineScheduler]. | -| [TestDispatcher] | A [CoroutineDispatcher] that whose delays are controlled by a [TestCoroutineScheduler]. | +| [TestDispatcher] | A [CoroutineDispatcher] whose delays are controlled by a [TestCoroutineScheduler]. | | [Dispatchers.setMain] | Mocks the main dispatcher using the provided one. If mocked with a [TestDispatcher], its [TestCoroutineScheduler] is used everywhere by default. | Provided [TestDispatcher] implementations: