From addfe4283b04529fbf39a273b8de9724936ec939 Mon Sep 17 00:00:00 2001 From: "sky..ok" Date: Thu, 29 Dec 2011 17:29:34 +0000 Subject: [PATCH] BatchHint Javadoc fixes git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8963 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/core/com/jme3/scene/Spatial.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/src/core/com/jme3/scene/Spatial.java b/engine/src/core/com/jme3/scene/Spatial.java index b97067cef..3785d6ec9 100644 --- a/engine/src/core/com/jme3/scene/Spatial.java +++ b/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; }