Skip to content

Commit f9bd46f

Browse files
robxyyelizarov
authored andcommitted
Fix typo.
1 parent bb714c5 commit f9bd46f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

kotlinx-coroutines-core/common/src/Dispatchers.common.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ public expect object Dispatchers {
5454
*
5555
* For example, the following code:
5656
* ```
57-
* withContext(Dispatcher.Unconfined) {
57+
* withContext(Dispatchers.Unconfined) {
5858
* println(1)
59-
* withContext(Dispatcher.Unconfined) { // Nested unconfined
59+
* withContext(Dispatchers.Unconfined) { // Nested unconfined
6060
* println(2)
6161
* }
6262
* println(3)

kotlinx-coroutines-core/jvm/src/Dispatchers.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ public actual object Dispatchers {
7171
*
7272
* For example, the following code:
7373
* ```
74-
* withContext(Dispatcher.Unconfined) {
74+
* withContext(Dispatchers.Unconfined) {
7575
* println(1)
76-
* withContext(Dispatcher.Unconfined) { // Nested unconfined
76+
* withContext(Dispatchers.Unconfined) { // Nested unconfined
7777
* println(2)
7878
* }
7979
* println(3)

0 commit comments

Comments
 (0)