From 6e46362d137252c0ab5c96112ad6186d41140f4e Mon Sep 17 00:00:00 2001 From: Megumin <83077245+meguminloli@users.noreply.github.com> Date: Wed, 15 Sep 2021 22:22:55 +0300 Subject: [PATCH] add a newline at the end of regex.rs --- src/util/regex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/regex.rs b/src/util/regex.rs index af41359f..e2310902 100644 --- a/src/util/regex.rs +++ b/src/util/regex.rs @@ -1,4 +1,4 @@ use once_cell::sync::Lazy; use regex::Regex; -pub static RE_USERNAME: Lazy = Lazy::new(|| Regex::new(r"^[a-zA-Z0-9_.]+$").unwrap()); \ No newline at end of file +pub static RE_USERNAME: Lazy = Lazy::new(|| Regex::new(r"^[a-zA-Z0-9_.]+$").unwrap());