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/2fac0dc7
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/2fac0dc7
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/2fac0dc7

Branch: refs/heads/master
Commit: 2fac0dc77402fe8ddcb81ca76abff6c4b9f63141
Parents: e2940db
Author: Ray DeCampo <r...@decampo.org>
Authored: Sat May 13 09:30:43 2017 -0400
Committer: Ray DeCampo <r...@decampo.org>
Committed: Sat May 13 09:30:43 2017 -0400

----------------------------------------------------------------------
 .../apache/commons/math4/geometry/partitioning/Embedding.java  | 6 +++---
 .../math4/geometry/spherical/twod/SphericalPolygonsSet.java    | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/2fac0dc7/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java 
b/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java
index 9e78d90..ef3cadf 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java
@@ -26,9 +26,9 @@ import org.apache.commons.math4.geometry.Space;
  * as {@link Hyperplane hyperplanes}. This interface can be used regardless
  * of the dimensions differences. As an example, {@link
  * org.apache.commons.math4.geometry.euclidean.threed.Line Line} in 3D
- * implements Embedding<{@link
- * org.apache.commons.math4.geometry.euclidean.threed.Cartesian3D 
Cartesian3D}, {link
- * org.apache.commons.math4.geometry.euclidean.oned.Cartesian1D Cartesian1D}, 
i.e. it
+ * implements Embedding&lt;{@link
+ * org.apache.commons.math4.geometry.euclidean.threed.Cartesian3D 
Cartesian3D}, {@link
+ * org.apache.commons.math4.geometry.euclidean.oned.Cartesian1D 
Cartesian1D}&gt;, i.e. it
  * maps directly dimensions 3 and 1.</p>
 
  * <p>In the 3D euclidean space, hyperplanes are 2D planes, and the 1D

http://git-wip-us.apache.org/repos/asf/commons-math/blob/2fac0dc7/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
 
b/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
index 83c6936..e6f94f2 100644
--- 
a/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
+++ 
b/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
@@ -421,7 +421,7 @@ public class SphericalPolygonsSet extends 
AbstractRegion<Sphere2D, Sphere1D> {
      * <p>
      * This method is intended as a first test to quickly identify points
      * that are guaranteed to be outside of the region, hence performing a full
-     * {@link #checkPoint(org.apache.commons.math4.geometry.Vector) checkPoint}
+     * {@link #checkPoint(org.apache.commons.math4.geometry.Point) checkPoint}
      * only if the point status remains undecided after the quick check. It is
      * is therefore mostly useful to speed up computation for small polygons 
with
      * complex shapes (say a country boundary on Earth), as the spherical cap 
will
@@ -429,7 +429,7 @@ public class SphericalPolygonsSet extends 
AbstractRegion<Sphere2D, Sphere1D> {
      * whereas the full check can be more computing intensive. A typical use 
case is
      * therefore:
      * </p>
-     * <pre>
+     * <pre>{@code
      *   // compute region, plus an enclosing spherical cap
      *   SphericalPolygonsSet complexShape = ...;
      *   EnclosingBall<Sphere2D, S2Point> cap = complexShape.getEnclosingCap();
@@ -451,7 +451,7 @@ public class SphericalPolygonsSet extends 
AbstractRegion<Sphere2D, Sphere1D> {
      *     // use l ...
      *
      *   }
-     * </pre>
+     * }</pre>
      * <p>
      * In the special cases of empty or whole sphere polygons, special
      * spherical caps are returned, with angular radius set to negative

Reply via email to