From b18c22ec832eb38e91b0548759fc1f8272f28aa4 Mon Sep 17 00:00:00 2001 From: Ardeshir81 Date: Wed, 23 Oct 2019 13:26:28 +0330 Subject: [PATCH] Minor English grammar issue fix on arch docs (#150) --- website/docs/guides/nodegui-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/guides/nodegui-architecture.md b/website/docs/guides/nodegui-architecture.md index e29fc9c8a..b3264b2c9 100644 --- a/website/docs/guides/nodegui-architecture.md +++ b/website/docs/guides/nodegui-architecture.md @@ -7,7 +7,7 @@ By looking at how NodeGui works internally, we would get a clear picture on why ## Qode -NodeGui uses Qt for creating Windows and other UI element. Hence it exports thin wrappers of native C++ widgets from Qt into Javascript world. Now, every Qt application needs to initialize an instance of `QApplication` before creating widgets. The way we do it in C++ Qt application is (dont worry if it doesnt make sense right now): +NodeGui uses Qt for creating Windows and other UI elements. Hence it exports thin wrappers of native C++ widgets from Qt into Javascript world. Now, every Qt application needs to initialize an instance of `QApplication` before creating widgets. The way we do it in C++ Qt application is (dont worry if it doesnt make sense right now): ```cpp #include