Skip to content

Commit af7bf5b

Browse files
link2xtr10s
authored andcommitted
s/forgeting/forgetting/
1 parent ea666f1 commit af7bf5b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

deltachat-ffi/deltachat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3159,7 +3159,7 @@ void dc_accounts_maybe_network_lost (dc_accounts_t* accounts);
31593159
*
31603160
* The `DC_EVENT_ACCOUNTS_BACKGROUND_FETCH_DONE` event is emitted at the end,
31613161
* process all events until you get this one and you can safely return to the background
3162-
* without forgeting to create notifications caused by timing race conditions.
3162+
* without forgetting to create notifications caused by timing race conditions.
31633163
*
31643164
* @memberof dc_accounts_t
31653165
* @param timeout The timeout in seconds

deltachat-jsonrpc/src/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ impl CommandApi {
235235
///
236236
/// The `AccountsBackgroundFetchDone` event is emitted at the end,
237237
/// process all events until you get this one and you can safely return to the background
238-
/// without forgeting to create notifications caused by timing race conditions.
238+
/// without forgetting to create notifications caused by timing race conditions.
239239
async fn accounts_background_fetch(&self, timeout_in_seconds: f64) -> Result<()> {
240240
self.accounts
241241
.write()

src/accounts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ impl Accounts {
316316
///
317317
/// The `AccountsBackgroundFetchDone` event is emitted at the end,
318318
/// process all events until you get this one and you can safely return to the background
319-
/// without forgeting to create notifications caused by timing race conditions.
319+
/// without forgetting to create notifications caused by timing race conditions.
320320
pub async fn background_fetch(&self, timeout: std::time::Duration) -> Result<()> {
321321
let result = tokio::time::timeout(timeout, self.background_fetch_without_timeout()).await;
322322
self.emit_event(EventType::AccountsBackgroundFetchDone);

0 commit comments

Comments
 (0)