Author: tilman
Date: Wed Mar 30 07:37:26 2016
New Revision: 1737080

URL: http://svn.apache.org/viewvc?rev=1737080&view=rev
Log:
PDFBOX-2852: fix typo

Modified:
    
pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/interactive/form/FillFormField.java

Modified: 
pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/interactive/form/FillFormField.java
URL: 
http://svn.apache.org/viewvc/pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/interactive/form/FillFormField.java?rev=1737080&r1=1737079&r2=1737080&view=diff
==============================================================================
--- 
pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/interactive/form/FillFormField.java
 (original)
+++ 
pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/interactive/form/FillFormField.java
 Wed Mar 30 07:37:26 2016
@@ -46,7 +46,7 @@ public final class FillFormField
         // as there might not be an AcroForm entry a null check is necessary
         if (acroForm != null)
         {
-            // Retrieve an individual field and set it's value.
+            // Retrieve an individual field and set its value.
             PDTextField field = (PDTextField) acroForm.getField( "sampleField" 
);
             field.setValue("Text Entry");
             


Reply via email to