Skip to content

Commit

Permalink
fix a misleading typo in some.js
Browse files Browse the repository at this point in the history
It should be “并行” in first example
  • Loading branch information
ifivebig committed Aug 5, 2016
1 parent 236677b commit 49bbe2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion some.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var log = t.log;
var arr = [1,2,3,6];

/**
* 串行执行,集合中至少有一个元素<=3,所以结果为true
* 并行执行,集合中至少有一个元素<=3,所以结果为true
*/
// 1.1
async.some(arr, function(item,callback){
Expand Down

0 comments on commit 49bbe2e

Please sign in to comment.