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 8a32db0 commit d2d42eaCopy full SHA for d2d42ea
coroutines-guide.md
@@ -639,7 +639,7 @@ suspend fun doSomethingUsefulTwo(): Int {
639
640
What do we do if need to invoke them _sequentially_ -- first `doSomethingUsefulOne` _and then_
641
`doSomethingUsefulTwo` and compute the sum of their results?
642
-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
643
to invoke the second one or to decide on how to invoke it.
644
645
We just use a normal sequential invocation, because the code in the coroutine, just like in the regular
0 commit comments