From 0f1bc9d83d5768b94d439782c97c09d465989d8d Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Mon, 17 Jul 2023 21:46:32 +0200 Subject: [PATCH] Fix typo in comment --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index dd2aa6f..52f818d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -135,7 +135,7 @@ pub fn setup() -> Rocket { .expect("Invalid configuration"); let service = services::get(config.service).expect("Invalid service"); - // We don't care about the join handle nor error results?t + // We don't care about the join handle nor error results? let _service = rocket::tokio::spawn(update_loop(service)); }) }))