Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Llamas committed Jan 31, 2015
1 parent 9a54277 commit b4b77e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

module.exports.start = function (runners, baton, cb) {
exports.start = function (runners, baton, cb) {
if (arguments.length === 2) {
cb = baton;
baton = {};
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"node": ">=0.10"
},
"devDependencies": {
"code": "^1.2.1",
"lab": "^5.1.1",
"code": "^1.3.0",
"lab": "^5.2.1",
"sinon": "^1.12.2"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var it = lab.it;
var race = require('../lib');

describe('relay-race', function () {
it('calls tasks in serial', function (done) {
it('calls tasks in series', function (done) {
var runners = [
function (baton, next) {
expect(baton).to.deep.equal({});
Expand Down

0 comments on commit b4b77e5

Please sign in to comment.