fix couple typos

This commit is contained in:
Cole R Lawrence
2014-02-05 12:19:40 -06:00
parent 3a144795df
commit 1df0930e5b

View File

@@ -57,14 +57,14 @@ app.on('message', function (event) {
if (event.type === 'start') {
console.log('nodemon started');
} else if (event.type === 'crash') {
console.log('script crasahed for some reason');
console.log('script crashed for some reason');
}
});
// force a restart
app.send('restart');
// for a quit
// force a quit
app.send('quit');
```
@@ -75,4 +75,4 @@ Note that even though the child will still emit a `message` event whose type is
app.on('exit', function () {
console.log('nodemon quit');
});
```
```