Fix typo in comment
Check and lint using Cargo / Check and lint (push) Successful in 5m4s Details

This commit is contained in:
Paul van Tilburg 2023-07-17 21:46:32 +02:00
parent 0068f6e9de
commit 0f1bc9d83d
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ pub fn setup() -> Rocket<Build> {
.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));
})
}))