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

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new be640720cc [DOCS] Fix typo (#2207)
be640720cc is described below

commit be640720ccc3173ea0be644e3e96072bdb6a9c7e
Author: John Bampton <[email protected]>
AuthorDate: Thu Jul 31 15:43:03 2025 +1000

    [DOCS] Fix typo (#2207)
    
    Minor whitespace trim
---
 docs/tutorial/snowflake/sql.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/tutorial/snowflake/sql.md b/docs/tutorial/snowflake/sql.md
index c6b1f0e0ee..e9fd9d03c8 100644
--- a/docs/tutorial/snowflake/sql.md
+++ b/docs/tutorial/snowflake/sql.md
@@ -327,7 +327,7 @@ FROM pointdf, pointdf2
 WHERE SEDONA.ST_Distance(pointdf.pointshape,pointdf2.pointshape) <= sqrt(0.5)
 ```
 
-The l2 distance between two polygons that are not disjoint is 0, so the 
following returns the single polygon pair  
+The l2 distance between two polygons that are not disjoint is 0, so the 
following returns the single polygon pair
 
 ```sql
 SELECT *
@@ -494,7 +494,7 @@ lefts_s2 AS (
 rights_s2 AS (
     SELECT * FROM rights, 
TABLE(FLATTEN(SEDONA.ST_S2CellIDs(ST_GeogFromText(rights.wkt), 10)))
 )
--- merge on s2 index (int) and group by to retrieve the original polygons 
rather the the s2 cells
+-- merge on s2 index (int) and group by to retrieve the original polygons 
rather than the s2 cells
 -- add the spatial predicate to be exact and omit if speed is more important
 -- expect all queries except the 5th to match
 -- expected result: 1 (touches) + 1 (contained) + 2 (intersect both) + 2 
(contains both) = 6 rows total

Reply via email to