Skip to content

Commit 70ef3a6

Browse files
author
cloudhead
committed
whitespace
1 parent 1d14683 commit 70ef3a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/vows.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Vows.js - asynchronous promise-based testing for node.js
33
//
44
// usage:
5-
//
5+
//
66
// var vows = require('vows'),
77
// assert = require('assert');
88
//
@@ -14,7 +14,7 @@
1414
//
1515
var path = require('path');
1616

17-
require.paths.unshift(path.join(path.dirname(__filename), 'vendor'),
17+
require.paths.unshift(path.join(path.dirname(__filename), 'vendor'),
1818
path.dirname(__filename));
1919

2020
var sys = require('sys'),
@@ -28,7 +28,7 @@ var total = 0, honored = 0,
2828
broken = 0, errored = 0,
2929
start, end;
3030

31-
// Context stack, used in addVow() to keep track
31+
// Context stack, used in addVow() to keep track
3232
var lastContext;
3333

3434
// Output buffer
@@ -78,7 +78,7 @@ function addVow(/* description & callback */) {
7878
if (args[0] instanceof Function) {
7979
vow.callback = args[0], vow.description = args[1];
8080
} else {
81-
vow.callback = args[1], vow.description = args[0];
81+
vow.callback = args[1], vow.description = args[0];
8282
}
8383
} else if (args[0].constructor.name === 'Vow') {
8484
vow = args[0];
@@ -300,7 +300,7 @@ vows.tell = function (topic, tests) {
300300
return run(new(Context)(vow, ctx));
301301
};
302302
}(vow, ctx));
303-
} else {
303+
} else {
304304
run(new(Context)(vow, ctx));
305305
}
306306
}

0 commit comments

Comments
 (0)