Skip to content

Commit

Permalink
Update: Correct internal function names
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjmnt4n authored and phated committed Jun 27, 2016
1 parent 875fac5 commit b5c3aa0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/createParallel.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var _ = require('lodash');
var async = require('async');

function createSeries(mapFn){
function createParallel(mapFn){

function buildParallel(){
var args = _.flatten(arguments);
Expand All @@ -18,4 +18,4 @@ function createSeries(mapFn){
return buildParallel;
}

module.exports = createSeries;
module.exports = createParallel;
2 changes: 1 addition & 1 deletion lib/createSeries.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var _ = require('lodash');
var async = require('async');

function createSeries(mapFn, onDone){
function createSeries(mapFn){

function buildSeries(){
var args = _.flatten(arguments);
Expand Down
4 changes: 2 additions & 2 deletions settle/series.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var asyncSettle = require('async-settle');

var onSettled = require('../lib/onSettled');

function buildParallel(){
function buildSeries(){
var args = _.flatten(arguments);

function settleSeries(done){
Expand All @@ -16,4 +16,4 @@ function buildParallel(){
return settleSeries;
}

module.exports = buildParallel;
module.exports = buildSeries;

0 comments on commit b5c3aa0

Please sign in to comment.