From e729104d0087fcb27dda7a6a5a8632b8a9a8d9b0 Mon Sep 17 00:00:00 2001 From: Hashed Hyphen Date: Wed, 16 Dec 2015 00:52:14 +0900 Subject: [PATCH] :bug: Support strict mode on Tutorial [ci skip] --- docs/tutorial/quick-start.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/tutorial/quick-start.md b/docs/tutorial/quick-start.md index 4c61413436dd..bc1a0f69e353 100644 --- a/docs/tutorial/quick-start.md +++ b/docs/tutorial/quick-start.md @@ -78,6 +78,8 @@ The `main.js` should create windows and handle system events, a typical example being: ```javascript +'use strict'; + const electron = require('electron'); const app = electron.app; // Module to control application life. const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.