You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2020/06/24 18:04:51 UTC

svn commit: r1879166 - in /pdfbox/branches/2.0/pdfbox/src: main/java/org/apache/pdfbox/pdmodel/common/COSArrayList.java test/java/org/apache/pdfbox/pdmodel/common/COSArrayListTest.java

Author: tilman
Date: Wed Jun 24 18:04:50 2020
New Revision: 1879166

URL: http://svn.apache.org/viewvc?rev=1879166&view=rev
Log:
PDFBOX-4892: fix typos

Modified:
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/COSArrayList.java
    pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/common/COSArrayListTest.java

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/COSArrayList.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/COSArrayList.java?rev=1879166&r1=1879165&r2=1879166&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/COSArrayList.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/common/COSArrayList.java Wed Jun 24 18:04:50 2020
@@ -60,7 +60,7 @@ public class COSArrayList<E> implements
     }
 
     /**
-     * Create the COSArrayList specifing the List and the backing COSArray.
+     * Create the COSArrayList specifying the List and the backing COSArray.
      * 
      * <p>User of this constructor need to ensure that the entries in the List and
      * the backing COSArray are matching i.e. the COSObject of the List entry is

Modified: pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/common/COSArrayListTest.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/common/COSArrayListTest.java?rev=1879166&r1=1879165&r2=1879166&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/common/COSArrayListTest.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/common/COSArrayListTest.java Wed Jun 24 18:04:50 2020
@@ -46,7 +46,7 @@ public class COSArrayListTest {
 
     // next two entries are to be used for comparison with
     // COSArrayList behaviour in order to ensure that the
-    // intented object is now at the correct position.
+    // intended object is now at the correct position.
     // Will also be used for Collection/Array based setting
     // and comparison
     static List<PDAnnotation> tbcAnnotationsList;
@@ -63,7 +63,7 @@ public class COSArrayListTest {
     private static final File OUT_DIR = new File("target/test-output/pdmodel/common");
 
     /*
-     * Create thre new different annotations an add them to the Java List/Array as
+     * Create three new different annotations and add them to the Java List/Array as
      * well as PDFBox List/Array implementations.
      */
     @Before