From a0f493d872f6fdd886e88c72baba1b2233b9d23a Mon Sep 17 00:00:00 2001
From: GalNey <60622945+GalNey@users.noreply.github.com>
Date: Fri, 21 Oct 2022 18:17:22 +0300
Subject: [PATCH] Add explanation for async programming (#2627)
---
.../content/106-python-frameworks/101-asynchronous/readme.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/readme.md b/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/readme.md
index 34aa96465..2c2fcdd85 100644
--- a/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/readme.md
+++ b/content/roadmaps/108-python/content/106-python-frameworks/101-asynchronous/readme.md
@@ -1,6 +1,6 @@
# Asynchronous
-
-Asynchronous programming is a style of programming that is mostly concerned with the asynchronous execution of tasks. Python has several asynchronous frameworks that are used to implement asynchronous programming.
+Asynchronous programming is a type of parallel programming in which a unit of work is allowed to run separately from the primary application thread. When the work is complete, it notifies the main thread about completion or failure of the worker thread.
+This style is mostly concerned with the asynchronous execution of tasks. Python has several asynchronous frameworks that are used to implement asynchronous programming.
Free Content
Top 5 Asynchronous Web Frameworks for Python