diff --git a/src/main/java/org/apache/commons/math/geometry/euclidean/threed/Line.java b/src/main/java/org/apache/commons/math/geometry/euclidean/threed/Line.java index 26f39c7f9..e3885dcc7 100644 --- a/src/main/java/org/apache/commons/math/geometry/euclidean/threed/Line.java +++ b/src/main/java/org/apache/commons/math/geometry/euclidean/threed/Line.java @@ -113,7 +113,7 @@ public class Line implements Embedding { } /** Get one point from the line. - * @param point desired abscissa for the point + * @param abscissa desired abscissa for the point * @return one point belonging to the line, at specified abscissa */ public Vector3D pointAt(final double abscissa) { diff --git a/src/main/java/org/apache/commons/math/geometry/euclidean/threed/SubLine.java b/src/main/java/org/apache/commons/math/geometry/euclidean/threed/SubLine.java index 2082ab9c4..9d2dbea9e 100644 --- a/src/main/java/org/apache/commons/math/geometry/euclidean/threed/SubLine.java +++ b/src/main/java/org/apache/commons/math/geometry/euclidean/threed/SubLine.java @@ -22,7 +22,6 @@ import java.util.List; import org.apache.commons.math.geometry.euclidean.oned.Interval; import org.apache.commons.math.geometry.euclidean.oned.IntervalsSet; import org.apache.commons.math.geometry.euclidean.oned.Vector1D; -import org.apache.commons.math.geometry.partitioning.Hyperplane; import org.apache.commons.math.geometry.partitioning.Region.Location; /** This class represents a subset of a {@link Line}. @@ -92,7 +91,7 @@ public class SubLine { /** Get the intersection of the instance and another sub-line. *

- * This method is related to the {@link Line#intersection(Hyperplane) + * This method is related to the {@link Line#intersection(Line) * intersection} method in the {@link Line Line} class, but in addition * to compute the point along infinite lines, it also checks the point * lies on both sub-line ranges. diff --git a/src/main/java/org/apache/commons/math/geometry/euclidean/twod/SubLine.java b/src/main/java/org/apache/commons/math/geometry/euclidean/twod/SubLine.java index ae0357f81..7be4970fa 100644 --- a/src/main/java/org/apache/commons/math/geometry/euclidean/twod/SubLine.java +++ b/src/main/java/org/apache/commons/math/geometry/euclidean/twod/SubLine.java @@ -95,7 +95,7 @@ public class SubLine extends AbstractSubHyperplane { /** Get the intersection of the instance and another sub-line. *

- * This method is related to the {@link Line#intersection(Hyperplane) + * This method is related to the {@link Line#intersection(Line) * intersection} method in the {@link Line Line} class, but in addition * to compute the point along infinite lines, it also checks the point * lies on both sub-line ranges. diff --git a/src/main/java/org/apache/commons/math/linear/ArrayFieldVector.java b/src/main/java/org/apache/commons/math/linear/ArrayFieldVector.java index 6381952a0..f62d6b16d 100644 --- a/src/main/java/org/apache/commons/math/linear/ArrayFieldVector.java +++ b/src/main/java/org/apache/commons/math/linear/ArrayFieldVector.java @@ -48,9 +48,8 @@ public class ArrayFieldVector> implements FieldVector< * Zero-length vectors may be used to initialized construction of vectors * by data gathering. We start with zero-length and use either the {@link * #ArrayFieldVector(ArrayFieldVector, ArrayFieldVector)} constructor - * or one of the {@code append} methods ({@link #append(FieldElement[])}, - * {@link #add(FieldVector)}, {@link #append(ArrayFieldVector)}) to gather data - * into this vector. + * or one of the {@code append} methods ({@link #add(FieldVector)} or + * {@link #append(ArrayFieldVector)}) to gather data into this vector. * * @param field field to which the elements belong */