Skip to content

Commit c184b3e

Browse files
committed
2 parents 693816a + 55a48fb commit c184b3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ to Gradle (in Preferences -> Build, Execution, Deployment -> Build Tools -> Grad
161161
### Requirements
162162

163163
* JDK >= 1.8 referred to by the `JAVA_HOME` environment variable.
164-
* JDK 1.6 referred to by the `JDK_16` environment variable.
164+
* JDK 1.6 referred to by the `JDK_16` environment variable. It is okay to have `JDK_16` pointing to `JAVA_HOME` for external contributions.
165165

166166
## Contributions and releases
167167

core/kotlinx-coroutines-core/test/guide/example-exceptions-04.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package kotlinx.coroutines.guide.exceptions04
88
import kotlinx.coroutines.*
99

1010
fun main() = runBlocking {
11-
//sampleEnd
11+
//sampleStart
1212
val handler = CoroutineExceptionHandler { _, exception ->
1313
println("Caught $exception")
1414
}

docs/exception-handling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ when its child completes with exception despite the installed handler.
206206
import kotlinx.coroutines.*
207207

208208
fun main() = runBlocking {
209-
//sampleEnd
209+
//sampleStart
210210
val handler = CoroutineExceptionHandler { _, exception ->
211211
println("Caught $exception")
212212
}

0 commit comments

Comments
 (0)