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.