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