This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch fix-r-example in repository https://gitbox.apache.org/repos/asf/sedona-db.git
commit ed91ca1cfe03ff9800a9f1ff4ee3506f212cb32e Author: Jia Yu <[email protected]> AuthorDate: Mon Sep 22 21:26:40 2025 -0700 Fix the indention --- docs/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/index.md b/docs/index.md index 79b7792..3d13916 100644 --- a/docs/index.md +++ b/docs/index.md @@ -80,20 +80,20 @@ SedonaDB offers a flexible query interface. === "Python" - ```python - import sedona.db + ```python + import sedona.db - sd = sedona.db.connect() - sd.sql("SELECT ST_Point(0, 1) as geom") + sd = sedona.db.connect() + sd.sql("SELECT ST_Point(0, 1) as geom") ``` === "R" - ```r - library(sedonadb) + ```r + library(sedonadb) - sd_sql("SELECT ST_Point(0, 1) as geom") - ``` + sd_sql("SELECT ST_Point(0, 1) as geom") + ``` ## Have questions?
