From c69bfe9f28c506146de475b86c86dfac80b99a86 Mon Sep 17 00:00:00 2001 From: Bauke Date: Thu, 8 Jun 2023 13:20:43 +0200 Subject: [PATCH] Change chart title to User Count so since it can also be for groups. --- source/charts/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/charts/mod.rs b/source/charts/mod.rs index 61e94a2..7ed85ab 100644 --- a/source/charts/mod.rs +++ b/source/charts/mod.rs @@ -60,7 +60,7 @@ impl UserCountChart { let chart_root = chart_root .margin(20, 20, 20, 20) - .titled("Tildes User Count", text_style(30))?; + .titled("User Count", text_style(30))?; chart_root.fill(&BACKGROUND_2)?;