Skip to content

Commit 7c3b0d0

Browse files
authored
minor: fix incorrect deprecation version & window docs (#18093)
1 parent ea83c26 commit 7c3b0d0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

datafusion/functions-window-common/src/expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl<'a> ExpressionArgs<'a> {
3737
///
3838
/// * `input_exprs` - The expressions passed as arguments
3939
/// to the user-defined window function.
40-
/// * `input_types` - The data types corresponding to the
40+
/// * `input_fields` - The fields corresponding to the
4141
/// arguments to the user-defined window function.
4242
///
4343
pub fn new(

datafusion/functions-window-common/src/partition.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl<'a> PartitionEvaluatorArgs<'a> {
4242
///
4343
/// * `input_exprs` - The expressions passed as arguments
4444
/// to the user-defined window function.
45-
/// * `input_types` - The data types corresponding to the
45+
/// * `input_fields` - The fields corresponding to the
4646
/// arguments to the user-defined window function.
4747
/// * `is_reversed` - Set to `true` if and only if the user-defined
4848
/// window function is reversible and is reversed.

datafusion/functions/src/planner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use datafusion_expr::{
2525
};
2626

2727
#[deprecated(
28-
since = "0.50.0",
28+
since = "50.0.0",
2929
note = "Use UnicodeFunctionPlanner and DateTimeFunctionPlanner instead"
3030
)]
3131
#[derive(Default, Debug)]

0 commit comments

Comments
 (0)