From 5b7c62685dcae285cb64716fe05d2b0c4d1c7641 Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Sun, 19 Jun 2022 13:12:59 +0100 Subject: [PATCH] Export to My Document.docx --- demo/73-comment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/73-comment.ts b/demo/73-comment.ts index d0f3b08005..09b6059b50 100644 --- a/demo/73-comment.ts +++ b/demo/73-comment.ts @@ -30,5 +30,5 @@ const doc = new Document({ }); Packer.toBuffer(doc).then((buffer) => { - fs.writeFileSync("document-comments.docx", buffer); + fs.writeFileSync("My Document.docx", buffer); });