📝 Match destructuring style

[ci skip]
This commit is contained in:
Plusb Preco 2016-05-11 01:26:38 +09:00
parent 5787bb0226
commit 4d7296e1db
24 changed files with 37 additions and 39 deletions

View file

@ -15,7 +15,7 @@ the user right clicks the page:
```html
<!-- index.html -->
<script>
const { Menu, MenuItem } = require('electron').remote;
const {Menu, MenuItem} = require('electron').remote;
const menu = new Menu();
menu.append(new MenuItem({ label: 'MenuItem1', click: () => { console.log('item 1 clicked'); } }));