From 2fac0dc77402fe8ddcb81ca76abff6c4b9f63141 Mon Sep 17 00:00:00 2001
From: Ray DeCampo
In the 3D euclidean space, hyperplanes are 2D planes, and the 1D
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 83c693645..e6f94f29c 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
* 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
* In the special cases of empty or whole sphere polygons, special
* spherical caps are returned, with angular radius set to negative
+ *
* {@code
* // compute region, plus an enclosing spherical cap
* SphericalPolygonsSet complexShape = ...;
* EnclosingBall
+ * }