aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/shared-mutable-state-and-concurrency.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/shared-mutable-state-and-concurrency.md')
-rw-r--r--docs/topics/shared-mutable-state-and-concurrency.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/shared-mutable-state-and-concurrency.md b/docs/topics/shared-mutable-state-and-concurrency.md
index b4b68b30..40b0134a 100644
--- a/docs/topics/shared-mutable-state-and-concurrency.md
+++ b/docs/topics/shared-mutable-state-and-concurrency.md
@@ -2,8 +2,8 @@
[//]: # (title: Shared mutable state and concurrency)
-Coroutines can be executed concurrently using a multi-threaded dispatcher like the [Dispatchers.Default]. It presents
-all the usual concurrency problems. The main problem being synchronization of access to **shared mutable state**.
+Coroutines can be executed parallelly using a multi-threaded dispatcher like the [Dispatchers.Default]. It presents
+all the usual parallelism problems. The main problem being synchronization of access to **shared mutable state**.
Some solutions to this problem in the land of coroutines are similar to the solutions in the multi-threaded world,
but others are unique.
@@ -510,4 +510,4 @@ have to switch to a different context at all.
[actor]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/actor.html
[produce]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/produce.html
-<!--- END --> \ No newline at end of file
+<!--- END -->