From f8ec957193923944fc53be9f357b9d2d9cba080e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 23 Jan 2025 17:15:17 +0100 Subject: [PATCH] doc(ui): Reword the doc comment for the is_supervisor_task_running method --- crates/matrix-sdk-ui/src/sync_service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-ui/src/sync_service.rs b/crates/matrix-sdk-ui/src/sync_service.rs index b5ab12c44..c8bd24c52 100644 --- a/crates/matrix-sdk-ui/src/sync_service.rs +++ b/crates/matrix-sdk-ui/src/sync_service.rs @@ -520,7 +520,7 @@ impl TerminationReport { // Testing helpers, mostly. #[doc(hidden)] impl SyncService { - /// Return the existential states of internal tasks. + /// Is the task supervisor running? pub async fn is_supervisor_running(&self) -> bool { self.inner.lock().await.supervisor.is_some() }