From 4bd722bf9254b6458e789dd78f8c5de8c9a5fe94 Mon Sep 17 00:00:00 2001 From: Judah Rand <17158624+judahrand@users.noreply.github.com> Date: Mon, 11 Sep 2023 19:04:01 +0100 Subject: [PATCH] Add missing newline! Co-authored-by: Liang-Chi Hsieh --- src/functions.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/functions.rs b/src/functions.rs index 100caf35..2d119962 100644 --- a/src/functions.rs +++ b/src/functions.rs @@ -231,7 +231,8 @@ scalar_function!(floor, Floor); scalar_function!(gcd, Gcd); scalar_function!(initcap, InitCap, "Converts the first letter of each word to upper case and the rest to lower case. Words are sequences of alphanumeric characters separated by non-alphanumeric characters."); scalar_function!(isnan, Isnan); -scalar_function!(iszero, Iszero);scalar_function!(lcm, Lcm); +scalar_function!(iszero, Iszero); +scalar_function!(lcm, Lcm); scalar_function!(left, Left, "Returns first n characters in the string, or when n is negative, returns all but last |n| characters."); scalar_function!(ln, Ln); scalar_function!(log, Log);