Explorar el Código

Quaternion: correct 2 old mistakes in the javadoc

Stephen Gold hace 4 años
padre
commit
7c5fe46cf9
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      jme3-core/src/main/java/com/jme3/math/Quaternion.java

+ 2 - 2
jme3-core/src/main/java/com/jme3/math/Quaternion.java

@@ -1151,7 +1151,7 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl
      * result is returned as a new quaternion.
      *
      * @param scalar
-     *            the quaternion to multiply this quaternion by.
+     *            the scalar to multiply this quaternion by.
      * @return the new quaternion.
      */
     public Quaternion mult(float scalar) {
@@ -1163,7 +1163,7 @@ public final class Quaternion implements Savable, Cloneable, java.io.Serializabl
      * result is stored locally.
      *
      * @param scalar
-     *            the quaternion to multiply this quaternion by.
+     *            the scalar to multiply this quaternion by.
      * @return this.
      */
     public Quaternion multLocal(float scalar) {