diff --git a/topics/basics/architectural_overview/threading/coroutines/coroutine_scopes.md b/topics/basics/architectural_overview/threading/coroutines/coroutine_scopes.md
index fcf828ae8..5af9a37f6 100644
--- a/topics/basics/architectural_overview/threading/coroutines/coroutine_scopes.md
+++ b/topics/basics/architectural_overview/threading/coroutines/coroutine_scopes.md
@@ -1,4 +1,4 @@
-
+
# Coroutine Scopes
@@ -165,7 +165,7 @@ project.getCoroutineScope(PluginBService::class.java).launch {
```
Unloading of Plugin A cancels its scope.
-The scope of Plugin B remains active, and the Plugin A classes are leaked.
+The **Project × Plugin B** scope remains active, and the Plugin A classes are leaked.
```mermaid
gantt
@@ -179,7 +179,7 @@ gantt
Project Scope : done, 2, 8
Project × Plugin A Scope : done, 2, 6
Project × Plugin B Scope : done, 4, 8
- PluginAService leak : crit, 5, 9
+ PluginAService leak : crit, 5, 8
```