From 2a38bfe93bc8842742d86ee3d9308d3d407ce981 Mon Sep 17 00:00:00 2001 From: Anson Biggs Date: Fri, 26 Apr 2024 03:17:20 +0000 Subject: [PATCH] lol --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b625e3f..c2d27d5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -50,7 +50,7 @@ fn main() -> Result<(), Box> { entries.retain(|entry| entry.score.is_positive()); - // Cunt occurences of main urls + // Count occurences of main urls let url_counts = entries.iter().fold(HashMap::new(), |mut acc, post| { *acc.entry(post.main_url.clone()).or_insert(0) += 1; acc