Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Jan 15, 2019
1 parent eb64b6e commit 4699d83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorial/devtools-extension.md
Expand Up @@ -30,12 +30,12 @@ Using the [React Developer Tools][react-devtools] as example:
1. Pass the location of the extension to `BrowserWindow.addDevToolsExtension`
API, for the React Developer Tools, it is something like:
```javascript
const path = require('path');
const os = require('os');
const path = require('path')
const os = require('os')

BrowserWindow.addDevToolsExtension(
path.join(os.homedir(),'/Library/Application\Support/Google/Chrome/Default/Extensions/fmkadmapgofadopljbjfkapdkoienihi/0.15.0_0')
);
path.join(os.homedir(), '/Library/Application Support/Google/Chrome/Default/Extensions/fmkadmapgofadopljbjfkapdkoienihi/0.15.0_0')
)
```

**Note:** The `BrowserWindow.addDevToolsExtension` API cannot be called before the
Expand Down

0 comments on commit 4699d83

Please sign in to comment.