diff options
author | Mehdi Houshmand <mehdi@apache.org> | 2012-01-24 10:02:36 +0000 |
---|---|---|
committer | Mehdi Houshmand <mehdi@apache.org> | 2012-01-24 10:02:36 +0000 |
commit | b406b736d9f9896aecfe7f5acf1e4759cb5c3d56 (patch) | |
tree | a6ff9291a557c0adff1cf70768f70e80f1c18f71 /src/java/org | |
parent | f248634b7fcd300446c25275d89cf7e07f3757c3 (diff) | |
download | xmlgraphics-fop-b406b736d9f9896aecfe7f5acf1e4759cb5c3d56.tar.gz xmlgraphics-fop-b406b736d9f9896aecfe7f5acf1e4759cb5c3d56.zip |
Corrected typo in error message
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1235191 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/fop/fonts/truetype/TTFFontLoader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fonts/truetype/TTFFontLoader.java b/src/java/org/apache/fop/fonts/truetype/TTFFontLoader.java index d1a55dd20..a33339607 100644 --- a/src/java/org/apache/fop/fonts/truetype/TTFFontLoader.java +++ b/src/java/org/apache/fop/fonts/truetype/TTFFontLoader.java @@ -173,7 +173,7 @@ public class TTFFontLoader extends FontLoader { if (ttf.isEmbeddable()) { returnFont.setEmbedFileName(this.fontFileURI); } else { - String msg = "The font " + this.fontFileURI + " is not embedabble."; + String msg = "The font " + this.fontFileURI + " is not embeddable."; throw new RuntimeException(msg); } } |