From 801093172db0b42c25ad18fa7cbcd945a8025c4c Mon Sep 17 00:00:00 2001 From: Cheng-Yuan-Lai Date: Sun, 29 Dec 2024 16:09:12 +0800 Subject: [PATCH] fix: fix typo --- datafusion/functions/src/math/gcd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/functions/src/math/gcd.rs b/datafusion/functions/src/math/gcd.rs index d6d8b8212eee..14503701f661 100644 --- a/datafusion/functions/src/math/gcd.rs +++ b/datafusion/functions/src/math/gcd.rs @@ -35,7 +35,7 @@ use datafusion_macros::user_doc; #[user_doc( doc_section(label = "Math Functions"), - description = "Returns the greatest common divisor of `expression_x` and `expression_y`. Returns 0 if both inputs are zero..", + description = "Returns the greatest common divisor of `expression_x` and `expression_y`. Returns 0 if both inputs are zero.", syntax_example = "gcd(expression_x, expression_y)", standard_argument(name = "expression_x", prefix = "First numeric"), standard_argument(name = "expression_y", prefix = "Second numeric")