From 92e74a527f74a1ea7304114530fa709cc2f7d86a Mon Sep 17 00:00:00 2001 From: Tai Le Manh Date: Thu, 9 Jan 2025 00:30:13 +0700 Subject: [PATCH] Fix typo --- datafusion/functions/src/unicode/reverse.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/datafusion/functions/src/unicode/reverse.rs b/datafusion/functions/src/unicode/reverse.rs index 0ac86801f7d0..f07deda70e52 100644 --- a/datafusion/functions/src/unicode/reverse.rs +++ b/datafusion/functions/src/unicode/reverse.rs @@ -104,8 +104,7 @@ impl ScalarUDFImpl for ReverseFunc { } } -/// Reverses the order of the characters in the string. -/// reverse('abcde') = 'edcba' +/// Reverses the order of the characters in the string `reverse('abcde') = 'edcba'`. /// The implementation uses UTF-8 code points as characters pub fn reverse(args: &[ArrayRef]) -> Result { if args[0].data_type() == &Utf8View {