From f608c2b2d91ad88f9d87ab8c34bc51b2b1cc7709 Mon Sep 17 00:00:00 2001 From: Andreas Waigand Date: Tue, 6 Jun 2017 23:30:45 +0200 Subject: [PATCH] :memo: Fixed typo [ci skip] --- docs/tutorial/debugging-main-process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/debugging-main-process.md b/docs/tutorial/debugging-main-process.md index a30760671d0..3b729dbddda 100644 --- a/docs/tutorial/debugging-main-process.md +++ b/docs/tutorial/debugging-main-process.md @@ -3,7 +3,7 @@ The DevTools in an Electron browser window can only debug JavaScript that's executed in that window (i.e. the web pages). To debug JavaScript that's executed in the main process you will need to use an external debugger and -launch Electron with the `--inspector` or `--inspector-brk` switch. +launch Electron with the `--inspect` or `--inspect-brk` switch. ## Command Line Switches