Skip to content

Commit d2d42ea

Browse files
SabagRonenelizarov
authored andcommitted
fix typos
1 parent 8a32db0 commit d2d42ea

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
@@ -639,7 +639,7 @@ suspend fun doSomethingUsefulTwo(): Int {
639639

640640
What do we do if need to invoke them _sequentially_ -- first `doSomethingUsefulOne` _and then_
641641
`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
642+
In practice we do this if we use the results of the first function to make a decision on whether we need
643643
to invoke the second one or to decide on how to invoke it.
644644

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

0 commit comments

Comments
 (0)