Skip to content

Commit

Permalink
New-line at the end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed Sep 28, 2010
1 parent 73b52a4 commit d5d2f1d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ Each forever object is an instance of the node.js core EventEmitter. There are s
vows test/*-test.js --spec
</pre>

#### Author: [Charlie Robbins](http://www.charlierobbins.com);
#### Author: [Charlie Robbins](http://www.charlierobbins.com);
2 changes: 1 addition & 1 deletion bin/forever
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ if (typeof options['max'] === 'undefined') {
// Run all of the files forever
argv._.forEach(function (file) {
forever.run(file, options);
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
"main": "./lib/forever",
"scripts": { "test": "vows test/*-test.js --spec" },
"engines": { "node": ">= 0.2.0" }
}
}
2 changes: 1 addition & 1 deletion samples/count-timer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ var count = 0;
var id = setInterval(function () {
sys.puts('Count is ' + count + '. Incrementing now.');
count++;
}, 1000);
}, 1000);
2 changes: 1 addition & 1 deletion samples/error-on-timer.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ var sys = require('sys');
setTimeout(function () {
sys.puts('Throwing error now.');
throw new Error('User generated fault.');
}, 1000);
}, 1000);
2 changes: 1 addition & 1 deletion samples/spawn-and-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ child.stderr.on('data', function (data) {

child.on('exit', function (code) {
sys.puts('Child process exited with code: ' + code);
});
});
2 changes: 1 addition & 1 deletion test/forever-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ vows.describe('forever').addBatch({
assert.equal(child.times, 3);
}
}
}).export(module);
}).export(module);

0 comments on commit d5d2f1d

Please sign in to comment.