Skip to content

Commit

Permalink
Add missing newline!
Browse files Browse the repository at this point in the history
Co-authored-by: Liang-Chi Hsieh <viirya@gmail.com>
  • Loading branch information
judahrand and viirya committed Sep 12, 2023
1 parent 426934f commit 3bbbe9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3bbbe9c

Please sign in to comment.