From 0b5fceb50ea18102411950106037636834e0f7d2 Mon Sep 17 00:00:00 2001 From: Alex Browne Date: Tue, 21 Nov 2023 22:19:39 -0800 Subject: [PATCH] docs: update quick-start.md (#40556) Updates the Quick Start guide to specify _where_ JavaScript code is supposed to be added. This is more descriptive than just "your file". --- 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 abb2629cb36d..b40dd8d11066 100644 --- a/docs/tutorial/quick-start.md +++ b/docs/tutorial/quick-start.md @@ -155,7 +155,7 @@ need two Electron modules: windows. Because the main process runs Node.js, you can import these as [CommonJS][commonjs] -modules at the top of your file: +modules at the top of your `main.js` file: ```js const { app, BrowserWindow } = require('electron')