From 05dda37b710ccdf9b68820f94c988c30c8f36833 Mon Sep 17 00:00:00 2001 From: Jan Marten <546795+LeovR@users.noreply.github.com> Date: Thu, 6 Aug 2020 08:56:02 +0000 Subject: [PATCH] Fix comment regarding output file name --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 28781012fe..f48a42ecf6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -53,7 +53,7 @@ Packer.toBuffer(doc).then((buffer) => { fs.writeFileSync("My Document.docx", buffer); }); -// Done! A file called 'My First Document.docx' will be in your file system. +// Done! A file called 'My Document.docx' will be in your file system. ```