From 4aed07643d422470776d1e80af9ff9db4fc7b91f Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Fri, 4 Apr 2025 09:02:05 +0200 Subject: [PATCH] glossary.md: Add Code Insight term --- topics/appendix/glossary.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/topics/appendix/glossary.md b/topics/appendix/glossary.md index 5c993d429..b25425ac0 100644 --- a/topics/appendix/glossary.md +++ b/topics/appendix/glossary.md @@ -30,6 +30,9 @@ Blocking Context : `java.util.concurrent.CancellationException`, `kotlin.coroutines.cancellation.CancellationException` (typealias in stdlib), `kotlinx.coroutines.CancellationException` (typealias in kotlinx-coroutines)
→ _ProcessCanceledException_ +Code Insight +: Code insight is a common name used for auto-completion, inspections, intention actions, type inference, and other features related to the code analysis. + Coroutine : A [Kotlin coroutines](kotlin_coroutines.md) execution unit allowing for handling concurrency and asynchronous tasks efficiently with a sequential/imperative code style.