From 79ef66e40ff3f6c21bc3e825083f767bc5ac1771 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Wed, 14 May 2025 14:20:46 -0400 Subject: [PATCH] fix: Clarify that it is only the name of the field that is ignored --- datafusion/expr/src/udf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/expr/src/udf.rs b/datafusion/expr/src/udf.rs index bf8339d88a55..385523cf0edb 100644 --- a/datafusion/expr/src/udf.rs +++ b/datafusion/expr/src/udf.rs @@ -464,7 +464,7 @@ pub trait ScalarUDFImpl: Debug + Send + Sync { /// /// # Example creating `Field` /// - /// Note the [`Field`] is ignored, except for structured types such as + /// Note the name of the [`Field`] is ignored, except for structured types such as /// `DataType::Struct`. /// /// ```rust