Skip to content

Commit dbb75d8

Browse files
committed
Fix indentation of sampleStart/startEnd comments in doc sample
1 parent 39c7ca5 commit dbb75d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/composing-suspending-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,12 +350,12 @@ import kotlinx.coroutines.*
350350
import kotlin.system.*
351351

352352
fun main() = runBlocking<Unit> {
353-
//sampleStart
353+
//sampleStart
354354
val time = measureTimeMillis {
355355
println("The answer is ${concurrentSum()}")
356356
}
357357
println("Completed in $time ms")
358-
//sampleEnd
358+
//sampleEnd
359359
}
360360

361361
suspend fun concurrentSum(): Int = coroutineScope {

0 commit comments

Comments
 (0)