Skip to content

Commit fa13beb

Browse files
charlesmucheneelizarov
authored andcommitted
Update coroutines-guide.md
Correct `Dispatcher` spelling
1 parent 9739030 commit fa13beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coroutines-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ It produces the following output (maybe in different order):
841841

842842
The default dispatcher that we've used in previous sections is representend by [DefaultDispatcher], which
843843
is equal to [CommonPool] in the current implementation. So, `launch { ... }` is the same
844-
as `launch(DefaultDispather) { ... }`, which is the same as `launch(CommonPool) { ... }`.
844+
as `launch(DefaultDispatcher) { ... }`, which is the same as `launch(CommonPool) { ... }`.
845845

846846
The difference between parent [coroutineContext][CoroutineScope.coroutineContext] and
847847
[Unconfined] context will be shown later.

0 commit comments

Comments
 (0)