Skip to content

Commit e95d808

Browse files
committed
Reknit after update of shared-mutable-state-and-concurrency.md
1 parent 6dc1bd5 commit e95d808

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

coroutines-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The main coroutines guide has moved to the [docs folder](docs/coroutines-guide.m
7777
* <a name='imperative-finally-block'></a>[Imperative finally block](docs/flow.md#imperative-finally-block)
7878
* <a name='declarative-handling'></a>[Declarative handling](docs/flow.md#declarative-handling)
7979
* <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)
8181
* <a name='launching-flow'></a>[Launching flow](docs/flow.md#launching-flow)
8282
<!--- TOC_REF docs/channels.md -->
8383
* <a name='channels'></a>[Channels](docs/channels.md#channels)

kotlinx-coroutines-core/jvm/test/guide/example-sync-07.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fun CoroutineScope.counterActor() = actor<CounterMsg> {
4040
}
4141
}
4242

43-
fun main() = runBlocking {
43+
fun main() = runBlocking<Unit> {
4444
val counter = counterActor() // create the actor
4545
withContext(Dispatchers.Default) {
4646
massiveRun {

0 commit comments

Comments
 (0)