From 9f5ae7ed277ec607cc83ea1a730fa32bdbd2f526 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sun, 2 Sep 2018 22:14:57 +0300 Subject: [PATCH] Update Asynchronous-programming.md --- glossary/Asynchronous-programming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glossary/Asynchronous-programming.md b/glossary/Asynchronous-programming.md index eb99010f2..cfc479e27 100644 --- a/glossary/Asynchronous-programming.md +++ b/glossary/Asynchronous-programming.md @@ -1,4 +1,4 @@ ### Asynchronous programming -Asynchronous programming is a style of parallel programming, using separate threads for separate units of work. +Asynchronous programming is a way to allow multiple events to trigger code without waiting for each other. The main benefits of asynchronous programming are improved application performance and responsiveness.