From 2e9109a9da40484ef6ef0a15ed855f68693e610a Mon Sep 17 00:00:00 2001 From: Trent Hauck Date: Wed, 17 Jul 2024 09:33:24 -0700 Subject: [PATCH] style: fix indent --- datafusion/functions-aggregate/src/count.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/functions-aggregate/src/count.rs b/datafusion/functions-aggregate/src/count.rs index a5c0f6d183c9..d06ee3946001 100644 --- a/datafusion/functions-aggregate/src/count.rs +++ b/datafusion/functions-aggregate/src/count.rs @@ -96,7 +96,7 @@ impl Count { pub fn new() -> Self { Self { signature: Signature::one_of( - // TypeSignature::Any(0) is required to handle `Count()` with no args + // TypeSignature::Any(0) is required to handle `Count()` with no args vec![TypeSignature::VariadicAny, TypeSignature::Any(0)], Volatility::Immutable, ),