From ad19f7997333503e7e6397bdd4d57c4e348ace9f Mon Sep 17 00:00:00 2001 From: George Andrianakis Date: Sat, 21 Feb 2015 18:37:24 +0200 Subject: [PATCH] Fixed comments --- listings/globals/bad-nexttick.js | 2 +- listings/globals/nexttick.js | 2 +- listings/web/nodemon.json | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/listings/globals/bad-nexttick.js b/listings/globals/bad-nexttick.js index 08add18..4641137 100644 --- a/listings/globals/bad-nexttick.js +++ b/listings/globals/bad-nexttick.js @@ -3,7 +3,7 @@ var EventEmitter = require('events').EventEmitter; function complexOperations() { var events = new EventEmitter(); - events.emit('success'); + events.emit('success'); // return events; } diff --git a/listings/globals/nexttick.js b/listings/globals/nexttick.js index 8bebff3..0a7ebcf 100644 --- a/listings/globals/nexttick.js +++ b/listings/globals/nexttick.js @@ -3,7 +3,7 @@ var EventEmitter = require('events').EventEmitter; function complexOperations() { var events = new EventEmitter(); - process.nextTick(function() { + process.nextTick(function() { // events.emit('success'); }); diff --git a/listings/web/nodemon.json b/listings/web/nodemon.json index 8c1ede3..44c8aea 100644 --- a/listings/web/nodemon.json +++ b/listings/web/nodemon.json @@ -1,16 +1,16 @@ { - "ignore": [ + "ignore": [ ".git", "node_modules/**/node_modules" ], - "execMap": { + "execMap": { "js": "node --harmony" }, - "watch": [ + "watch": [ "test/fixtures/", "test/samples/" ], - "env": { + "env": { "NODE_ENV": "development" }, "ext": "js json"