Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mika Väisänen committed Sep 26, 2015
1 parent f136f28 commit 43ccbbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ var async = require('control.async')

var read = async.liftNode(fs.readFile)

var files = async.parallel( read('foo.txt', 'utf-8')
var files = async.parallel([ read('foo.txt', 'utf-8')
, read('bar.txt', 'utf-8')
, read('baz.txt', 'utf-8'))
, read('baz.txt', 'utf-8')])

var concatenated = files.chain(function(xs){ return xs.join('') })

Expand Down

0 comments on commit 43ccbbe

Please sign in to comment.