From ebf7d8c122bf595b3c8aca6221d62a8b54430d6c Mon Sep 17 00:00:00 2001 From: omar Date: Fri, 3 Oct 2025 18:28:15 +0200 Subject: [PATCH] Updated About the IMGUI paradigm (markdown) --- About-the-IMGUI-paradigm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/About-the-IMGUI-paradigm.md b/About-the-IMGUI-paradigm.md index da6c34e..0d69b2b 100644 --- a/About-the-IMGUI-paradigm.md +++ b/About-the-IMGUI-paradigm.md @@ -119,7 +119,7 @@ The existence of those two terms effectively has hindered both discussions and r What we care about: - IMGUI refers to the API: literally the interface between the application and the UI system. - - An IMGUI API favor the application code owning its data and being the single source of truth for it. + - An IMGUI API favors the application code owning its data and being the single source of truth for it. - An IMGUI API tries to minimize the application having to retain/manage data related to the UI system. - An IMGUI API tries to minimize the UI system having to retain/manage data related to the application. - Synchronization between application data and UI data is natural and less error-prone.