Skip to content

Commit acc582d

Browse files
committed
3. code-blocks fix
1 parent c1f504e commit acc582d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/topics/channels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ fun CoroutineScope.filter(numbers: ReceiveChannel<Int>, prime: Int) = produce<In
225225
Now we build our pipeline by starting a stream of numbers from 2, taking a prime number from the current channel,
226226
and launching new pipeline stage for each prime number found:
227227

228-
```Plain Text
228+
```
229229
numbersFrom(2) -> filter(2) -> filter(3) -> filter(5) -> filter(7) ...
230230
```
231231

docs/topics/coroutines-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ the code with coroutines inside of `runBlocking { ... }` curly braces. This is h
5959
If you remove or forget `runBlocking` in this code, you'll get an error on the [launch] call, since `launch`
6060
is declared only on the [CoroutineScope]:
6161

62-
```Plain Text
62+
```
6363
Unresolved reference: launch
6464
```
6565

0 commit comments

Comments
 (0)