Skip to content

Commit 72e9f6e

Browse files
authored
Merge pull request #684 from duckdb/fix-typos
Fix typos
2 parents 3f69a96 + 05b5e3d commit 72e9f6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/spatial/modules/geos/geos_module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ struct ST_BuildArea {
620620
}
621621

622622
static constexpr auto DESCRIPTION = R"(
623-
Creates a polygonal geometry by attemtping to "fill in" the input geometry.
623+
Creates a polygonal geometry by attempting to "fill in" the input geometry.
624624
625625
Unlike ST_Polygonize, this function does not fill in holes.)";
626626

src/spatial/modules/main/spatial_functions_scalar.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1960,9 +1960,9 @@ struct ST_CollectionExtract {
19601960
Extracts geometries from a GeometryCollection into a typed multi geometry.
19611961
19621962
If the input geometry is a GeometryCollection, the function will return a multi geometry, determined by the `type` parameter.
1963-
- if `type` = 1, returns a MultiPoint containg all the Points in the collection
1964-
- if `type` = 2, returns a MultiLineString containg all the LineStrings in the collection
1965-
- if `type` = 3, returns a MultiPolygon containg all the Polygons in the collection
1963+
- if `type` = 1, returns a MultiPoint containing all the Points in the collection
1964+
- if `type` = 2, returns a MultiLineString containing all the LineStrings in the collection
1965+
- if `type` = 3, returns a MultiPolygon containing all the Polygons in the collection
19661966
19671967
If no `type` parameters is provided, the function will return a multi geometry matching the highest "surface dimension"
19681968
of the contained geometries. E.g. if the collection contains only Points, a MultiPoint will be returned. But if the

0 commit comments

Comments
 (0)