Skip to content

Commit 3785348

Browse files
committed
Reknit after fixing indentation in code samples
1 parent 36105c1 commit 3785348

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kotlinx-coroutines-core/jvm/test/guide/example-compose-05.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fun main() = runBlocking<Unit> {
2020
suspend fun concurrentSum(): Int = coroutineScope {
2121
val one = async { doSomethingUsefulOne() }
2222
val two = async { doSomethingUsefulTwo() }
23-
one.await() + two.await()
23+
one.await() + two.await()
2424
}
2525

2626
suspend fun doSomethingUsefulOne(): Int {

kotlinx-coroutines-core/jvm/test/guide/example-compose-06.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ suspend fun failedConcurrentSum(): Int = coroutineScope {
2828
println("Second child throws an exception")
2929
throw ArithmeticException()
3030
}
31-
one.await() + two.await()
31+
one.await() + two.await()
3232
}

0 commit comments

Comments
 (0)