From 53807571a6d8ce2476f1ae4e8d80e353de8a8cc6 Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Tue, 18 Dec 2012 16:29:00 +0000 Subject: [PATCH] - Quaternion javadoc fix, thanks to @JesperSmith git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10034 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/core/com/jme3/math/Quaternion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/core/com/jme3/math/Quaternion.java b/engine/src/core/com/jme3/math/Quaternion.java index c1c6f0ae3..53ef9ae8a 100644 --- a/engine/src/core/com/jme3/math/Quaternion.java +++ b/engine/src/core/com/jme3/math/Quaternion.java @@ -826,7 +826,7 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl * quaternion multiplication is not commutative so q * p != p * q. * * It IS safe for q and res to be the same object. - * It IS safe for this and res to be the same object. + * It IS NOT safe for this and res to be the same object. * * @param q * the quaternion to multiply this quaternion by.