Skip to content

Commit 3bbbe9c

Browse files
judahrandviirya
andcommitted
Add missing newline!
Co-authored-by: Liang-Chi Hsieh <[email protected]>
1 parent 426934f commit 3bbbe9c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/functions.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ scalar_function!(floor, Floor);
231231
scalar_function!(gcd, Gcd);
232232
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.");
233233
scalar_function!(isnan, Isnan);
234-
scalar_function!(iszero, Iszero);scalar_function!(lcm, Lcm);
234+
scalar_function!(iszero, Iszero);
235+
scalar_function!(lcm, Lcm);
235236
scalar_function!(left, Left, "Returns first n characters in the string, or when n is negative, returns all but last |n| characters.");
236237
scalar_function!(ln, Ln);
237238
scalar_function!(log, Log);

0 commit comments

Comments
 (0)