From 50655b019822bbdc4f25e77b6f2d8ca6acfe8624 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 12 Sep 2025 20:20:26 +0200 Subject: [PATCH] fix: typo --- src/parser/colles/upcoming.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/colles/upcoming.rs b/src/parser/colles/upcoming.rs index 018f006..762e850 100644 --- a/src/parser/colles/upcoming.rs +++ b/src/parser/colles/upcoming.rs @@ -166,7 +166,7 @@ pub async fn fetch(session: &str, last_hash: &str) -> (Vec, String) { // Extract text using pdf_extract let pdf_text = pdf_extract::extract_text(tmpfile.path()).expect("Failed to extract PDF text"); - println!("{}", pdf_text) + println!("{}", pdf_text); // Calculate the hash of the PDF file let hash = hash_text(&pdf_text);