From 7d96321786d72563c034b9f905c8b7195e26bb8e Mon Sep 17 00:00:00 2001 From: Dominik Ilja <104933651+Dominik-Ilja@users.noreply.github.com> Date: Mon, 26 Sep 2022 04:53:08 -0400 Subject: [PATCH] docs: minor grammar fixes in tutorial (#35804) --- docs/tutorial/tutorial-2-first-app.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/tutorial-2-first-app.md b/docs/tutorial/tutorial-2-first-app.md index 75d94d618e01..d8cc8eb6fd0f 100644 --- a/docs/tutorial/tutorial-2-first-app.md +++ b/docs/tutorial/tutorial-2-first-app.md @@ -186,7 +186,7 @@ by creating a barebones web page in an `index.html` file in the root folder of y ``` Now that you have a web page, you can load it into an Electron [BrowserWindow][browser-window]. -Replace the contents your `main.js` file with the following code. We will explain each +Replace the contents of your `main.js` file with the following code. We will explain each highlighted block separately. ```js {1,3-10,12-14} title='main.js' showLineNumbers @@ -435,7 +435,7 @@ This file controls Electron's **main process**, which runs an instance of Node.j responsible for your app's lifecycle, displaying native interfaces, performing privileged operations, and managing renderer processes. -**Renderer processes** (or renderers for short) are responsible for display graphical content. You can +**Renderer processes** (or renderers for short) are responsible for displaying graphical content. You can load a web page into a renderer by pointing it to either a web address or a local HTML file. Renderers behave very similarly to regular web pages and have access to the same web APIs.