Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
robxyy authored and elizarov committed Sep 10, 2019
1 parent bb714c5 commit f9bd46f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions kotlinx-coroutines-core/common/src/Dispatchers.common.kt
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public expect object Dispatchers {
*
* For example, the following code:
* ```
* withContext(Dispatcher.Unconfined) {
* withContext(Dispatchers.Unconfined) {
* println(1)
* withContext(Dispatcher.Unconfined) { // Nested unconfined
* withContext(Dispatchers.Unconfined) { // Nested unconfined
* println(2)
* }
* println(3)
Expand Down
4 changes: 2 additions & 2 deletions kotlinx-coroutines-core/jvm/src/Dispatchers.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ public actual object Dispatchers {
*
* For example, the following code:
* ```
* withContext(Dispatcher.Unconfined) {
* withContext(Dispatchers.Unconfined) {
* println(1)
* withContext(Dispatcher.Unconfined) { // Nested unconfined
* withContext(Dispatchers.Unconfined) { // Nested unconfined
* println(2)
* }
* println(3)
Expand Down

0 comments on commit f9bd46f

Please sign in to comment.