Fix a couple minor typos in docs
This commit is contained in:
parent
2c672052e6
commit
c116f6b35c
2 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ var Menu = require('menu');
|
||||||
var MenuItem = require('menu-item');
|
var MenuItem = require('menu-item');
|
||||||
|
|
||||||
var menu = new Menu();
|
var menu = new Menu();
|
||||||
menu.append(new MenuItem({ label: 'MenuItem1', click: function() { console.log('item 1clicked'); } }));
|
menu.append(new MenuItem({ label: 'MenuItem1', click: function() { console.log('item 1 clicked'); } }));
|
||||||
menu.append(new MenuItem({ type: 'separator' }));
|
menu.append(new MenuItem({ type: 'separator' }));
|
||||||
menu.append(new MenuItem({ label: 'MenuItem2', type: 'checkbox', clicked: true }));
|
menu.append(new MenuItem({ label: 'MenuItem2', type: 'checkbox', clicked: true }));
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
* Windows 7 or later
|
* Windows 7 or later
|
||||||
* Visual Studio 2010 Express or Profissional
|
* Visual Studio 2010 Express or Professional
|
||||||
* Make sure "X64 Compilers and Tools" are installed if you use the
|
* Make sure "X64 Compilers and Tools" are installed if you use the
|
||||||
Profissional edition.
|
Professional edition.
|
||||||
* [Python 2.7](http://www.python.org/download/releases/2.7/)
|
* [Python 2.7](http://www.python.org/download/releases/2.7/)
|
||||||
* [node.js](http://nodejs.org/)
|
* [node.js](http://nodejs.org/)
|
||||||
* [git](http://git-scm.com)
|
* [git](http://git-scm.com)
|
||||||
|
|
Loading…
Reference in a new issue