Fix a couple minor typos in docs

This commit is contained in:
Kyle Robinson Young 2013-12-12 22:31:19 -08:00
parent 2c672052e6
commit c116f6b35c
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ var Menu = require('menu');
var MenuItem = require('menu-item');
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({ label: 'MenuItem2', type: 'checkbox', clicked: true }));

View file

@ -3,9 +3,9 @@
## Prerequisites
* 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
Profissional edition.
Professional edition.
* [Python 2.7](http://www.python.org/download/releases/2.7/)
* [node.js](http://nodejs.org/)
* [git](http://git-scm.com)