Skip to content

Commit 48fd628

Browse files
Kafjielizarov
authored andcommitted
Fix typo in coroutines guide
1 parent 43e9011 commit 48fd628

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)