From c98774b3df0efeca1fe8e61dd2d1c8568aacdb11 Mon Sep 17 00:00:00 2001 From: TJ Krusinski Date: Sun, 5 Apr 2015 16:18:20 -0400 Subject: [PATCH] add `to` in sentence for grammar Simply a small grammar improvement. --- docs/tutorial/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quick-start.md b/docs/tutorial/quick-start.md index 76577206ce..bbe35988f8 100644 --- a/docs/tutorial/quick-start.md +++ b/docs/tutorial/quick-start.md @@ -39,7 +39,7 @@ So the main process manages all web pages and their corresponding renderer processes, and each renderer process is separated from each other and only care about the web page running in it. -In web pages it is not allowed call native GUI related APIs because managing +In web pages, it is not allowed to call native GUI related APIs because managing native GUI resources in web pages is very dangerous and easy to leak resources. If you want to do GUI operations in web pages, you have to communicate with the main process to do it there.