Skip to content

Commit 7108a50

Browse files
committed
Fix docstring
1 parent 5bfbe13 commit 7108a50

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/src/main/java/org/apache/iceberg/geospatial/GeospatialPredicateEvaluators.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ public static class GeographyEvaluator implements GeospatialPredicateEvaluator {
9999
*
100100
* <p>Wraparound (or antimeridian crossing) occurs when a geography crosses the 180°/-180°
101101
* longitude line on a map. In these cases, the minimum X value is greater than the maximum X
102-
* value (xmin > xmax). This represents a bounding box that wraps around the globe.
102+
* value (xmin &gt; xmax). This represents a bounding box that wraps around the globe.
103103
*
104104
* <p>For example, a bounding box with xmin=170° and xmax=-170° represents an area that spans
105105
* from 170° east to 190° east (or equivalently, -170° west). This is important for geometries
106106
* that cross the antimeridian, like a path from Japan to Alaska.
107107
*
108-
* <p>When xmin > xmax, a point matches if its X coordinate is either X ≥ xmin OR X ≤ xmax,
108+
* <p>When xmin &gt; xmax, a point matches if its X coordinate is either X ≥ xmin OR X ≤ xmax,
109109
* rather than the usual X ≥ xmin AND X ≤ xmax. In geographic terms, if the westernmost
110110
* longitude is greater than the easternmost longitude, this indicates an antimeridian crossing.
111111
*

0 commit comments

Comments
 (0)