Skip to content

Commit

Permalink
Fix a typo (#3213)
Browse files Browse the repository at this point in the history
  • Loading branch information
YakovBurtsev committed Mar 9, 2022
1 parent 3b423b9 commit bc120a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/coroutine-context-and-dispatchers.md
Expand Up @@ -306,7 +306,7 @@ However, this parent-child relation can be explicitly overriden in one of two wa

1. When a different scope is explicitly specified when launching a coroutine (for example, `GlobalScope.launch`),
then it does not inherit a `Job` from the parent scope.
2. When a different `Job` object is passed as the context for the new coroutine (as show in the example below),
2. When a different `Job` object is passed as the context for the new coroutine (as shown in the example below),
then it overrides the `Job` of the parent scope.

In both cases, the launched coroutine is not tied to the scope it was launched from and operates independently.
Expand Down

0 comments on commit bc120a1

Please sign in to comment.