Fix javadoc issues

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/44b2b2c1
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/44b2b2c1
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/44b2b2c1

Branch: refs/heads/master
Commit: 44b2b2c1b465113bb1718e864dd928d1eaeb13de
Parents: 69f13ae
Author: Ray DeCampo <r...@decampo.org>
Authored: Fri May 12 18:05:11 2017 -0400
Committer: Ray DeCampo <r...@decampo.org>
Committed: Fri May 12 18:05:11 2017 -0400

----------------------------------------------------------------------
 .../apache/commons/math4/geometry/euclidean/oned/Vector1D.java | 2 +-
 .../commons/math4/geometry/euclidean/threed/Cartesian3D.java   | 2 +-
 .../commons/math4/geometry/euclidean/threed/Vector3D.java      | 6 +++---
 .../apache/commons/math4/geometry/euclidean/twod/Vector2D.java | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/44b2b2c1/src/main/java/org/apache/commons/math4/geometry/euclidean/oned/Vector1D.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/oned/Vector1D.java 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/oned/Vector1D.java
index ceeea08..8a9742b 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/oned/Vector1D.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/oned/Vector1D.java
@@ -26,7 +26,7 @@ public abstract class Vector1D implements Vector<Euclidean1D> 
{
 
     /** Get the abscissa of the vector.
      * @return abscissa of the vector
-     * @see #Cartesian1D(double)
+     * @see Cartesian1D#Cartesian1D(double)
      */
     public abstract double getX();
 

http://git-wip-us.apache.org/repos/asf/commons-math/blob/44b2b2c1/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Cartesian3D.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Cartesian3D.java
 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Cartesian3D.java
index 3880edf..a1468b9 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Cartesian3D.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Cartesian3D.java
@@ -327,7 +327,7 @@ public class Cartesian3D extends Vector3D implements 
Serializable, Point<Euclide
      *   Cartesian3D k = u.normalize();
      *   Cartesian3D i = k.orthogonal();
      *   Cartesian3D j = Cartesian3D.crossProduct(k, i);
-     * </code></pre></p>
+     * </code></pre>
      * @return a new normalized vector orthogonal to the instance
      * @exception MathArithmeticException if the norm of the instance is null
      */

http://git-wip-us.apache.org/repos/asf/commons-math/blob/44b2b2c1/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Vector3D.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Vector3D.java
 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Vector3D.java
index 23d644a..15400f7 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Vector3D.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/threed/Vector3D.java
@@ -27,19 +27,19 @@ public abstract class Vector3D implements 
Vector<Euclidean3D> {
 
     /** Get the abscissa of the vector.
      * @return abscissa of the vector
-     * @see #Cartesian3D(double, double, double)
+     * @see Cartesian3D#Cartesian3D(double, double, double)
      */
     public abstract double getX();
 
     /** Get the ordinate of the vector.
      * @return ordinate of the vector
-     * @see #Cartesian3D(double, double, double)
+     * @see Cartesian3D#Cartesian3D(double, double, double)
      */
     public abstract double getY();
 
     /** Get the height of the vector.
      * @return height of the vector
-     * @see #Cartesian3D(double, double, double)
+     * @see Cartesian3D#Cartesian3D(double, double, double)
      */
     public abstract double getZ();
 

http://git-wip-us.apache.org/repos/asf/commons-math/blob/44b2b2c1/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/Vector2D.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/Vector2D.java 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/Vector2D.java
index a43c8a0..dbe98d7 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/Vector2D.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/Vector2D.java
@@ -25,13 +25,13 @@ public abstract class Vector2D implements 
Vector<Euclidean2D> {
 
     /** Get the abscissa of the vector.
      * @return abscissa of the vector
-     * @see #Cartesian2D(double, double)
+     * @see Cartesian2D#Cartesian2D(double, double)
      */
     public abstract double getX();
 
     /** Get the ordinate of the vector.
      * @return ordinate of the vector
-     * @see #Cartesian2D(double, double)
+     * @see Cartesian2D#Cartesian2D(double, double)
      */
     public abstract double getY();
 

Reply via email to