From bf782ac8405a2efd16343ef3b4e121656b5958cd Mon Sep 17 00:00:00 2001 From: "PSp..om" Date: Sun, 4 Nov 2012 05:05:38 +0000 Subject: [PATCH] Just fixing a typo in a comment. git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9948 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/core/com/jme3/font/BitmapFont.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/src/core/com/jme3/font/BitmapFont.java b/engine/src/core/com/jme3/font/BitmapFont.java index 7ae0c2c6c..856268c37 100644 --- a/engine/src/core/com/jme3/font/BitmapFont.java +++ b/engine/src/core/com/jme3/font/BitmapFont.java @@ -167,7 +167,7 @@ public class BitmapFont implements Savable { } public float getLineWidth(CharSequence text){ - + // This method will probably always be a bit of a maintenance // nightmare since it basis its calculation on a different // routine than the Letters class. The ideal situation would @@ -243,8 +243,8 @@ public class BitmapFont implements Savable { // that we don't care about. if (i == text.length() - 1) { lineWidth += c.getWidth() * sizeScale; - - // Since theh width includes the xOffset then we need + + // Since the width includes the xOffset then we need // to take it out again by adding it, ie: offset the width // we just added by the appropriate amount. lineWidth += c.getXOffset() * sizeScale;