From 060c9c8aa1c4b548c8f8eccdfb17603ebc5c6485 Mon Sep 17 00:00:00 2001 From: Simon Laux Date: Fri, 12 Jan 2024 21:22:56 +0100 Subject: [PATCH] cargo fmt --- deltachat-jsonrpc/src/api.rs | 2 +- src/accounts.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deltachat-jsonrpc/src/api.rs b/deltachat-jsonrpc/src/api.rs index 48a1e42a9..4d009f636 100644 --- a/deltachat-jsonrpc/src/api.rs +++ b/deltachat-jsonrpc/src/api.rs @@ -232,7 +232,7 @@ impl CommandApi { } /// Performs a background fetch for all accounts in parallel with a timeout. - /// + /// /// The `BackgroundFetchCompletedForAllAccounts` event is emitted at the end, /// process all events until you get this one and you can safely return to the background /// without forgeting to create notifications caused by timing race conditions. diff --git a/src/accounts.rs b/src/accounts.rs index 9ea09d5f3..11c1db641 100644 --- a/src/accounts.rs +++ b/src/accounts.rs @@ -295,7 +295,7 @@ impl Accounts { /// Performs a background fetch for all accounts in parallel. /// /// If you need a timeout, then use [Accounts::background_fetch_with_timeout] instead. - /// + /// /// The `BackgroundFetchCompletedForAllAccounts` event is emitted at the end, /// process all events until you get this one and you can safely return to the background /// without forgeting to create notifications caused by timing race conditions. @@ -320,7 +320,7 @@ impl Accounts { /// Performs a background fetch for all accounts in parallel with a timeout. /// /// If you want no timeout, then use [Accounts::background_fetch] instead. - /// + /// /// The `BackgroundFetchCompletedForAllAccounts` event is emitted at the end, /// process all events until you get this one and you can safely return to the background /// without forgeting to create notifications caused by timing race conditions.