@@ -2148,7 +2148,7 @@ def first_value(
2148
2148
expression: Argument to perform bitwise calculation on
2149
2149
filter: If provided, only compute against rows for which the filter is True
2150
2150
order_by: Set the ordering of the expression to evaluate
2151
- null_treatment: Assign whether to respect or ignull null values.
2151
+ null_treatment: Assign whether to respect or ignore null values.
2152
2152
"""
2153
2153
order_by_raw = sort_list_to_raw_sort_list (order_by )
2154
2154
filter_raw = filter .expr if filter is not None else None
@@ -2180,7 +2180,7 @@ def last_value(
2180
2180
expression: Argument to perform bitwise calculation on
2181
2181
filter: If provided, only compute against rows for which the filter is True
2182
2182
order_by: Set the ordering of the expression to evaluate
2183
- null_treatment: Assign whether to respect or ignull null values.
2183
+ null_treatment: Assign whether to respect or ignore null values.
2184
2184
"""
2185
2185
order_by_raw = sort_list_to_raw_sort_list (order_by )
2186
2186
filter_raw = filter .expr if filter is not None else None
@@ -2214,7 +2214,7 @@ def nth_value(
2214
2214
n: Index of value to return. Starts at 1.
2215
2215
filter: If provided, only compute against rows for which the filter is True
2216
2216
order_by: Set the ordering of the expression to evaluate
2217
- null_treatment: Assign whether to respect or ignull null values.
2217
+ null_treatment: Assign whether to respect or ignore null values.
2218
2218
"""
2219
2219
order_by_raw = sort_list_to_raw_sort_list (order_by )
2220
2220
filter_raw = filter .expr if filter is not None else None
0 commit comments