From 5fe87268be6dbf33e487e1399953b7ec217f6116 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 9 Jan 2023 15:31:47 +0000 Subject: [PATCH] typo --- background-jobs/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background-jobs/src/main.rs b/background-jobs/src/main.rs index 62602529..c49fe033 100644 --- a/background-jobs/src/main.rs +++ b/background-jobs/src/main.rs @@ -43,7 +43,7 @@ async fn main() -> anyhow::Result<()> { // signal cache sweep task to stop running cache_sweep_cancel.cancel(); - // wait for the cache sweep job to exit it's loop gracefully + // wait for the cache sweep job to exit its loop gracefully cache_sweep_handle.await.unwrap(); log::info!("application successfully shut down gracefully");