From c723a5c77db587aa8a77065c4fa0190679dca497 Mon Sep 17 00:00:00 2001 From: Felix Kaspar Date: Sun, 12 May 2024 21:15:47 +0200 Subject: [PATCH] fixed comment for pdf extraction --- shared-operations/src/functions/extractPages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-operations/src/functions/extractPages.ts b/shared-operations/src/functions/extractPages.ts index 7a65b2dd2..4a9acdaa4 100644 --- a/shared-operations/src/functions/extractPages.ts +++ b/shared-operations/src/functions/extractPages.ts @@ -36,7 +36,7 @@ export class ExtractPages extends Operator { * Logic */ - /** PDF-Imposition, PDF-N-Up: Put multiple pages of the input document into a single page of the output document. - see: {@link https://en.wikipedia.org/wiki/N-up} */ + /** PDF extraction, specify pages from one pdf and output them to a new pdf */ async run(input: PdfFile[], progressCallback: (state: Progress) => void): Promise { return oneToOne(input, async (input, index, max) => { const pdfLibDocument = await input.pdfLibDocument;