From 202a9edfa8f69869dfd3ca5e60855709140ef7c9 Mon Sep 17 00:00:00 2001 From: Brusk Hamarash Date: Sun, 3 Oct 2021 23:51:43 +0300 Subject: [PATCH] Update README.md --- Software-Development/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software-Development/README.md b/Software-Development/README.md index 7ab19f5..cc024a3 100644 --- a/Software-Development/README.md +++ b/Software-Development/README.md @@ -334,7 +334,7 @@ Race condition is the situation where certain behavior of a system is controlled #### Concurrency -The primary enabler of distributed systems are concurrency and it is usually its primary headache. When creating concurrent applications, the developer must be careful with the design of that application so that it does not run into race condition as described above. This means that application designs in concurrent situations must calculate for sequence and timing properly using certain techniques, and even strategies. These include thread-safe practices, atomic operations, locking (if required). +The primary enabler of distributed systems is concurrency and it is usually its primary headache. When creating concurrent applications, the developer must be careful with the design of that application so that it does not run into race condition as described above. This means that application designs in concurrent situations must calculate for sequence and timing properly using certain techniques, and even strategies. These include thread-safe practices, atomic operations, locking (if required). ##### Optimistic Concurrency Control (OCC)