Skip to content

Commit

Permalink
[DOCS] Fix spelling (#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Jul 9, 2024
1 parent 746e312 commit 678fbde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3170,7 +3170,7 @@ public void closestPoint3d() {
}

@Test
public void closestPointGeomtryCollection() {
public void closestPointGeometryCollection() {
LineString line = GEOMETRY_FACTORY.createLineString(coordArray(2, 0, 0, 2));
Geometry[] geometry =
new Geometry[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void testMinConvexHull() throws FactoryException, TransformException {
}

@Test
public void testMinConvexHullRectange() throws FactoryException, TransformException {
public void testMinConvexHullRectangle() throws FactoryException, TransformException {
GridCoverage2D emptyRaster = RasterConstructors.makeEmptyRaster(2, 5, 3, 0, 0, 1, -1, 0, 0, 0);
double[] values1 = new double[] {0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0};
double[] values2 = new double[] {0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0};
Expand Down
2 changes: 1 addition & 1 deletion flink/src/test/java/org/apache/sedona/flink/TestBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static List<Row> createPointText(int size) {
return data;
}

static List<Point> creatPoint(int size) {
static List<Point> createPoint(int size) {
List<Point> data = new ArrayList<>();
GeometryFactory geomFact = new GeometryFactory();
for (int i = 0; i < size; i++) {
Expand Down

0 comments on commit 678fbde

Please sign in to comment.