Skip to content

Commit

Permalink
Fixed a syntax error
Browse files Browse the repository at this point in the history
Missing a comma in array
  • Loading branch information
Mark Ni committed Nov 12, 2014
1 parent 408a7bb commit aea0dfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -256,7 +256,7 @@ var formData = {
my_file: fs.createReadStream(__dirname + '/unicycle.jpg'),
// Pass multiple values /w an Array
attachments: [
fs.createReadStream(__dirname + '/attacment1.jpg')
fs.createReadStream(__dirname + '/attacment1.jpg'),
fs.createReadStream(__dirname + '/attachment2.jpg')
],
// Pass optional meta-data with an 'options' object with style: {value: DATA, options: OPTIONS}
Expand Down

0 comments on commit aea0dfc

Please sign in to comment.