We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9739030 commit fa13bebCopy full SHA for fa13beb
coroutines-guide.md
@@ -841,7 +841,7 @@ It produces the following output (maybe in different order):
841
842
The default dispatcher that we've used in previous sections is representend by [DefaultDispatcher], which
843
is equal to [CommonPool] in the current implementation. So, `launch { ... }` is the same
844
-as `launch(DefaultDispather) { ... }`, which is the same as `launch(CommonPool) { ... }`.
+as `launch(DefaultDispatcher) { ... }`, which is the same as `launch(CommonPool) { ... }`.
845
846
The difference between parent [coroutineContext][CoroutineScope.coroutineContext] and
847
[Unconfined] context will be shown later.
0 commit comments