Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion coroutines-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ suspend fun doSomethingUsefulTwo(): Int {

What do we do if need to invoke them _sequentially_ -- first `doSomethingUsefulOne` _and then_
`doSomethingUsefulTwo` and compute the sum of their results?
In practise we do this if we use the results of the first function to make a decision on whether we need
In practice we do this if we use the results of the first function to make a decision on whether we need
to invoke the second one or to decide on how to invoke it.

We just use a normal sequential invocation, because the code in the coroutine, just like in the regular
Expand Down