This is an automated email from the ASF dual-hosted git repository.

paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git


The following commit(s) were added to refs/heads/main by this push:
     new 92e7fcb1 docs(rust/sedona-functions): Fix minor typos in function 
description (#374)
92e7fcb1 is described below

commit 92e7fcb16fa469fd5b83b5367833243441e6e284
Author: Hiroaki Yutani <[email protected]>
AuthorDate: Thu Nov 27 11:48:35 2025 +0900

    docs(rust/sedona-functions): Fix minor typos in function description (#374)
---
 rust/sedona-functions/src/st_analyze_agg.rs | 2 +-
 rust/sedona-functions/src/st_length.rs      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/rust/sedona-functions/src/st_analyze_agg.rs 
b/rust/sedona-functions/src/st_analyze_agg.rs
index c574ca97..a0f95b63 100644
--- a/rust/sedona-functions/src/st_analyze_agg.rs
+++ b/rust/sedona-functions/src/st_analyze_agg.rs
@@ -58,7 +58,7 @@ pub fn st_analyze_agg_udf() -> SedonaAggregateUDF {
 fn st_analyze_agg_doc() -> Documentation {
     Documentation::builder(
         DOC_SECTION_OTHER,
-        "Return Return the statistics of geometries for geom.",
+        "Return the statistics of geometries for geom.",
         "ST_Analyze_Agg (A: Geometry)",
     )
     .with_argument("geom", "geometry: Input geometry or geography")
diff --git a/rust/sedona-functions/src/st_length.rs 
b/rust/sedona-functions/src/st_length.rs
index eeb6ad5a..e0f21c59 100644
--- a/rust/sedona-functions/src/st_length.rs
+++ b/rust/sedona-functions/src/st_length.rs
@@ -37,7 +37,7 @@ pub fn st_length_udf() -> SedonaScalarUDF {
 fn st_length_doc() -> Documentation {
     Documentation::builder(
         DOC_SECTION_OTHER,
-        "Returns the length of geom\
+        "Returns the length of geom. \
          This function only supports LineString, MultiLineString, and 
GeometryCollections \
          containing linear geometries. Use ST_Perimeter for polygons.\
         ",

Reply via email to