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 2014/10/06 18:59:53 UTC

svn commit: r1629713 - /pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java

Author: tilman
Date: Mon Oct  6 16:59:53 2014
New Revision: 1629713

URL: http://svn.apache.org/r1629713
Log:
PDFBOX-2299: fix typo

Modified:
    pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java

Modified: pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java
URL: http://svn.apache.org/viewvc/pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java?rev=1629713&r1=1629712&r2=1629713&view=diff
==============================================================================
--- pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java (original)
+++ pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java Mon Oct  6 16:59:53 2014
@@ -173,7 +173,7 @@ public abstract class FontContainer
         {
             GlyphException e = new GlyphException(PreflightConstants.ERROR_FONTS_GLYPH_MISSING, cid, "The character \""
                     + cid + "\" in the font program \"" + this.font.getBaseFont()
-                    + "\"is missing from the Charater Encoding.");
+                    + "\" is missing from the Charater Encoding.");
             markCIDAsInvalid(cid, e);
             throw e;
         }
@@ -183,7 +183,7 @@ public abstract class FontContainer
         {
             GlyphException e = new GlyphException(PreflightConstants.ERROR_FONTS_METRICS, cid,
                     "Width of the character \"" + cid + "\" in the font program \"" + this.font.getBaseFont()
-                            + "\"is inconsistent with the width in the PDF dictionary.");
+                            + "\" is inconsistent with the width in the PDF dictionary.");
             markCIDAsInvalid(cid, e);
             throw e;
         }