summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKornel <kornel@geekhood.net>2020-04-11 19:27:01 +0100
committerKornel <kornel@geekhood.net>2020-04-11 19:27:01 +0100
commitb89e65cc4e2bb9063371e91c4098e033ea57f385 (patch)
tree39c5e2124383f20c1121e8490bbd82ae2af01505
parent9e3e5e0c83dcd3ee75e35cc7ea7c13761659d171 (diff)
warnings -= 1
-rw-r--r--categories/src/categories.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/categories/src/categories.rs b/categories/src/categories.rs
index 3baba6c..8dc3a72 100644
--- a/categories/src/categories.rs
+++ b/categories/src/categories.rs
@@ -50,7 +50,7 @@ quick_error! {
}
lazy_static! {
- pub static ref CATEGORIES: Categories = { Categories::new().expect("built-in categories") };
+ pub static ref CATEGORIES: Categories = Categories::new().expect("built-in categories");
}
impl Categories {