diff --git a/bigframes/bigquery/_operations/geo.py b/bigframes/bigquery/_operations/geo.py index 0856baabea..fc9bd1a653 100644 --- a/bigframes/bigquery/_operations/geo.py +++ b/bigframes/bigquery/_operations/geo.py @@ -264,7 +264,7 @@ def st_distance( A series containing geography objects. other (bigframes.pandas.Series | bigframes.geopandas.GeoSeries | shapely.Geometry): The series or geometric object to calculate the distance in meters - to from the geography objects in ``series``. + to form the geography objects in ``series``. use_spheroid (optional, default ``False``): Determines how this function measures distance. If ``use_spheroid`` is False, the function measures distance on the surface of a perfect diff --git a/bigframes/core/compile/googlesql/expression.py b/bigframes/core/compile/googlesql/expression.py index 20d6dbf9a1..581ab67718 100644 --- a/bigframes/core/compile/googlesql/expression.py +++ b/bigframes/core/compile/googlesql/expression.py @@ -25,7 +25,7 @@ * `expression`: Models basic SQL expressions. Extended classes (not part of standard GoogleSQL syntax, but added for convenience): -i + * `ColumnExpression`: Represents column references. * `TableExpression`: Represents table references. * `AliasExpression`: Represents aliased expressions.