Skip to content

Commit

Permalink
Update downloadMany method documentation
Browse files Browse the repository at this point in the history
Added missing single quote.
  • Loading branch information
yuks authored Dec 26, 2023
1 parent 93034a7 commit 55d1fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/imap-flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2602,7 +2602,7 @@ class ImapFlow extends EventEmitter {
* @example
* let mailbox = await client.mailboxOpen('INBOX');
* // download body parts '2', and '3' from all messages in the selected mailbox
* let response = await client.downloadMany('*', ['2', '3]);
* let response = await client.downloadMany('*', ['2', '3']);
* process.stdout.write(response[2].content)
* process.stdout.write(response[3].content)
*/
Expand Down

0 comments on commit 55d1fc1

Please sign in to comment.