Skip to content

Commit bd15a33

Browse files
committed
Merge remote-tracking branch 'origin/master' into develop
2 parents e6e8ce8 + 48fd628 commit bd15a33

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
@@ -220,7 +220,7 @@ the background job in any way. Much better.
220220

221221
### Extract function refactoring
222222

223-
Let's extract the block of code inside `launch(CommonPool} { ... }` into a separate function. When you
223+
Let's extract the block of code inside `launch(CommonPool) { ... }` into a separate function. When you
224224
perform "Extract function" refactoring on this code you get a new function with `suspend` modifier.
225225
That is your first _suspending function_. Suspending functions can be used inside coroutines
226226
just like regular functions, but their additional feature is that they can, in turn,

0 commit comments

Comments
 (0)