Copilot commented on code in PR #128: URL: https://github.com/apache/sedona-db/pull/128#discussion_r2370807783
########## docs/requirements.txt: ########## @@ -15,12 +15,15 @@ # specific language governing permissions and limitations # under the License. +griffe mike +mkdocs mkdocs-git-revision-date-localized-plugin mkdocs-glightbox mkdocs-macros-plugin mkdocs-material -mkdocstrings[python] +mkdocstrings +mkdocstrings-python Review Comment: The change from `mkdocstrings[python]` to separate `mkdocstrings` and `mkdocstrings-python` packages may indicate a dependency management issue. Verify that this change is intentional and maintains the same functionality. ```suggestion mkdocstrings[python] ``` ########## docs/reference/sql.md: ########## @@ -30,7 +30,7 @@ To query a file, place its path or URL in single quotes within the `FROM` clause "SELECT * FROM 'https://raw.githubusercontent.com/geoarrow/geoarrow-data/v0.2.0/natural-earth/files/natural-earth_cities_geo.parquet'").show() ``` -## ST_Analyze_Aggr +## ST\_Analyze\_Aggr Review Comment: [nitpick] Using backslash escaping for underscores in function names creates inconsistent formatting. Consider using a consistent approach for all function names throughout the document. ```suggestion ## ST_Analyze_Aggr ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
