Skip to content

Commit d5d2f1d

Browse files
committed
New-line at the end of file
1 parent 73b52a4 commit d5d2f1d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ Each forever object is an instance of the node.js core EventEmitter. There are s
6363
vows test/*-test.js --spec
6464
</pre>
6565

66-
#### Author: [Charlie Robbins](http://www.charlierobbins.com);
66+
#### Author: [Charlie Robbins](http://www.charlierobbins.com);

bin/forever

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ if (typeof options['max'] === 'undefined') {
5454
// Run all of the files forever
5555
argv._.forEach(function (file) {
5656
forever.run(file, options);
57-
});
57+
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"main": "./lib/forever",
1717
"scripts": { "test": "vows test/*-test.js --spec" },
1818
"engines": { "node": ">= 0.2.0" }
19-
}
19+
}

samples/count-timer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ var count = 0;
1313
var id = setInterval(function () {
1414
sys.puts('Count is ' + count + '. Incrementing now.');
1515
count++;
16-
}, 1000);
16+
}, 1000);

samples/error-on-timer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ var sys = require('sys');
1111
setTimeout(function () {
1212
sys.puts('Throwing error now.');
1313
throw new Error('User generated fault.');
14-
}, 1000);
14+
}, 1000);

samples/spawn-and-error.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ child.stderr.on('data', function (data) {
2323

2424
child.on('exit', function (code) {
2525
sys.puts('Child process exited with code: ' + code);
26-
});
26+
});

test/forever-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ vows.describe('forever').addBatch({
5353
assert.equal(child.times, 3);
5454
}
5555
}
56-
}).export(module);
56+
}).export(module);

0 commit comments

Comments
 (0)