File tree 2 files changed +2
-2
lines changed
kotlinx-coroutines-core/jvm/test/guide
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ The main coroutines guide has moved to the [docs folder](docs/coroutines-guide.m
77
77
* <a name =' imperative-finally-block ' ></a >[ Imperative finally block] ( docs/flow.md#imperative-finally-block )
78
78
* <a name =' declarative-handling ' ></a >[ Declarative handling] ( docs/flow.md#declarative-handling )
79
79
* <a name =' upstream-exceptions-only ' ></a >[ Upstream exceptions only] ( docs/flow.md#upstream-exceptions-only )
80
- * <a name =' imperative-versus-declarative ' ></a >[ Imperative versus declarative] ( docs/flow.md#imperative-versus-declarative )
80
+ * <a name =' imperative-versus-declarative ' ></a >[ Imperative versus declarative] ( docs/flow.md#imperative-versus-declarative )
81
81
* <a name =' launching-flow ' ></a >[ Launching flow] ( docs/flow.md#launching-flow )
82
82
<!-- - TOC_REF docs/channels.md -->
83
83
* <a name =' channels ' ></a >[ Channels] ( docs/channels.md#channels )
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ fun CoroutineScope.counterActor() = actor<CounterMsg> {
40
40
}
41
41
}
42
42
43
- fun main () = runBlocking {
43
+ fun main () = runBlocking< Unit > {
44
44
val counter = counterActor() // create the actor
45
45
withContext(Dispatchers .Default ) {
46
46
massiveRun {
You can’t perform that action at this time.
0 commit comments