Skip to content

Commit fe65c66

Browse files
committed
fix: correct typo in null_treatment parameter documentation
1 parent 097373d commit fe65c66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/datafusion/functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2148,7 +2148,7 @@ def first_value(
21482148
expression: Argument to perform bitwise calculation on
21492149
filter: If provided, only compute against rows for which the filter is True
21502150
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.
21522152
"""
21532153
order_by_raw = sort_list_to_raw_sort_list(order_by)
21542154
filter_raw = filter.expr if filter is not None else None
@@ -2180,7 +2180,7 @@ def last_value(
21802180
expression: Argument to perform bitwise calculation on
21812181
filter: If provided, only compute against rows for which the filter is True
21822182
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.
21842184
"""
21852185
order_by_raw = sort_list_to_raw_sort_list(order_by)
21862186
filter_raw = filter.expr if filter is not None else None
@@ -2214,7 +2214,7 @@ def nth_value(
22142214
n: Index of value to return. Starts at 1.
22152215
filter: If provided, only compute against rows for which the filter is True
22162216
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.
22182218
"""
22192219
order_by_raw = sort_list_to_raw_sort_list(order_by)
22202220
filter_raw = filter.expr if filter is not None else None

0 commit comments

Comments
 (0)