@@ -1524,9 +1524,7 @@ def cardinality(array: Expr) -> Expr:
1524
1524
1525
1525
1526
1526
def empty (array : Expr ) -> Expr :
1527
- """
1528
- This is an alias for :py:func:`array_empty`.
1529
- """
1527
+ """This is an alias for :py:func:`array_empty`."""
1530
1528
return array_empty (array )
1531
1529
1532
1530
@@ -2148,7 +2146,7 @@ def first_value(
2148
2146
expression: Argument to perform bitwise calculation on
2149
2147
filter: If provided, only compute against rows for which the filter is True
2150
2148
order_by: Set the ordering of the expression to evaluate
2151
- null_treatment: Assign whether to respect or ignull null values.
2149
+ null_treatment: Assign whether to respect or ignore null values.
2152
2150
"""
2153
2151
order_by_raw = sort_list_to_raw_sort_list (order_by )
2154
2152
filter_raw = filter .expr if filter is not None else None
@@ -2180,7 +2178,7 @@ def last_value(
2180
2178
expression: Argument to perform bitwise calculation on
2181
2179
filter: If provided, only compute against rows for which the filter is True
2182
2180
order_by: Set the ordering of the expression to evaluate
2183
- null_treatment: Assign whether to respect or ignull null values.
2181
+ null_treatment: Assign whether to respect or ignore null values.
2184
2182
"""
2185
2183
order_by_raw = sort_list_to_raw_sort_list (order_by )
2186
2184
filter_raw = filter .expr if filter is not None else None
@@ -2214,7 +2212,7 @@ def nth_value(
2214
2212
n: Index of value to return. Starts at 1.
2215
2213
filter: If provided, only compute against rows for which the filter is True
2216
2214
order_by: Set the ordering of the expression to evaluate
2217
- null_treatment: Assign whether to respect or ignull null values.
2215
+ null_treatment: Assign whether to respect or ignore null values.
2218
2216
"""
2219
2217
order_by_raw = sort_list_to_raw_sort_list (order_by )
2220
2218
filter_raw = filter .expr if filter is not None else None
0 commit comments