You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ms...@apache.org on 2021/01/07 17:04:47 UTC

[pdfbox-docs] branch master updated: PDFBOX-5030: fix typo

This is an automated email from the ASF dual-hosted git repository.

msahyoun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pdfbox-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c65c53  PDFBOX-5030: fix typo
5c65c53 is described below

commit 5c65c5354a2ba298ef2ea4d5c0320404c5e4a8c5
Author: Maruan Sahyoun <sa...@fileaffairs.de>
AuthorDate: Thu Jan 7 18:04:19 2021 +0100

    PDFBOX-5030: fix typo
---
 content/3.0/migration.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/3.0/migration.md b/content/3.0/migration.md
index 0fc3555..f6335e3 100644
--- a/content/3.0/migration.md
+++ b/content/3.0/migration.md
@@ -66,7 +66,7 @@ For loading a PDF `PDDocument.load` has been replaced with the `Loader` methods.
 When saving a PDF this will now be done in compressed mode per default. To override that use `PDDocument.save` with `CompressParameters.NO_COMPRESSION`.
 
 PDFBox now loads a PDF Document incrementally reducing the initial memory footprint. This will also reduce the memory needed to
-consume a PDF if only certain parts of the PDF are accessed. Note that, due to the nature of PDF, uses such as iterationg over all pages,
+consume a PDF if only certain parts of the PDF are accessed. Note that, due to the nature of PDF, uses such as iterating over all pages,
 accessing annotations, signing a PDF etc. might still load all parts of the PDF overtime leading to a similar memory consumption as with PDFBox 2.0.   
 
 ## Changes in Common Functions