Skip to content

Commit db5bd54

Browse files
committed
Fix readme
1 parent 9ec881e commit db5bd54

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ GlobalScope.launch {
3232
* [core](core/README.md) — Kotlin/JVM implementation of common coroutines with additional features:
3333
* `Dispatchers.IO` dispatcher for blocking coroutines;
3434
* `Executor.asCoroutineDispatcher()` extension, custom thread pools, and more.
35-
* [test](core/README.md) — test utilities for coroutines, currently with one feature:
36-
* `MainDispatcherInjector.inject()` to override `Dispatchers.Main` in tests.
35+
* [test](core/README.md) — test utilities for coroutines
36+
* `Dispatchers.setMain` to override `Dispatchers.Main` in tests.
3737
* [debug](core/README.md) — debug utilities for coroutines.
3838
* `DebugProbes` API to probe, keep track of, print and dump active coroutines.
3939
* [js](js/README.md) — Kotlin/JS implementation of common coroutines with `Promise` support.

core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Module name below corresponds to the artifact name in Maven/Gradle.
77

88
* [kotlinx-coroutines-core](kotlinx-coroutines-core/README.md) — core coroutine builders and synchronization primitives.
99
* [kotlinx-coroutines-debug](kotlinx-coroutines-debug/README.md) — coroutines debug utilities.
10-
* [kotlinx-coroutines-test](kotlinx-coroutines-test/README.md) — coroutines test utilities such as settable Main dispatcher.
10+
* [kotlinx-coroutines-test](kotlinx-coroutines-test/README.md) — coroutines test utilities.
1111

core/kotlinx-coroutines-debug/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ of coroutines hierarchy referenced by a [Job] instance using [DebugProbes.printH
1616
### Using as JVM agent
1717

1818
It is possible to use this module as a standalone JVM agent to enable debug probes on the application startup.
19-
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.1.0.jar`.
19+
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.0.1.jar`.
2020
Additionally, on Linux and Mac OS X you can use `kill -5 $pid` command in order to force your application to print all alive coroutines.
2121

2222

core/kotlinx-coroutines-test/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Test utilities for `kotlinx.coroutines`. Provides `Dispatchers.setMain` to overr
77
Add `kotlinx-coroutines-test` to your project test dependencies:
88
```
99
dependencies {
10-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.1.0'
10+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.0.1'
1111
}
1212
```
1313

0 commit comments

Comments
 (0)