Browse Source

BatchHint Javadoc fixes

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8963 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
sky..ok 13 years ago
parent
commit
addfe4283b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      engine/src/core/com/jme3/scene/Spatial.java

+ 3 - 3
engine/src/core/com/jme3/scene/Spatial.java

@@ -96,7 +96,7 @@ public abstract class Spatial implements Savable, Cloneable, Collidable, Asset {
     }
 
     /**
-     * Specifies is this spatial should be batched
+     * Specifies if this spatial should be batched
      */
     public enum BatchHint {
 
@@ -105,11 +105,11 @@ public abstract class Spatial implements Savable, Cloneable, Collidable, Asset {
          */
         Inherit,
         /** 
-         * this spatial will always be batched when attached to a BatchNode
+         * This spatial will always be batched when attached to a BatchNode.
          */
         Always,
         /** 
-         * this spatial will naver be batched when attached to a BatchNode
+         * This spatial will never be batched when attached to a BatchNode.
          */
         Never;
     }