Skip to content

Commit

Permalink
fix(csp): fix #5, example in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 7, 2018
1 parent 972a23e commit a10a487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/csp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Channel.merge([
Channel.range(0, 3),
Channel.range(10, 15),
Channel.range(100, 110)
]).reduce(tx.push).then(console.log);
]).reduce(tx.push()).then(console.log);

// [ 0, 100, 101, 102, 103, 1, 2, 104, 105, 10, 11, 12, 13, 106, 14, 107, 108, 109 ]

Expand Down

0 comments on commit a10a487

Please sign in to comment.