From f3078065eb2bbc437b9a0c7a3158e9205f3010f4 Mon Sep 17 00:00:00 2001 From: Jessica Lord Date: Wed, 20 Apr 2016 15:18:14 -0700 Subject: [PATCH] A few tweaks to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 022b42a..c2e3e72 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ This is a minimal Electron application based on the [Quick Start Guide](http://e A basic Electron application needs just these files: -- `index.html` - A web page to render. -- `main.js` - Starts the app and creates a browser window to render HTML. - `package.json` - Points to the app's main file and lists its details and dependencies. +- `main.js` - Starts the app and creates a browser window to render HTML. This is the app's **main process**. +- `index.html` - A web page to render. This is the app's **renderer process**. You can learn more about each of these components within the [Quick Start Guide](http://electron.atom.io/docs/latest/tutorial/quick-start).