From 0e456cded24ae040573e374f7adbe440a2e7911a Mon Sep 17 00:00:00 2001 From: Valere Date: Mon, 27 May 2024 16:14:49 +0200 Subject: [PATCH] review: cargo fmt --- bindings/matrix-sdk-crypto-ffi/src/machine.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/matrix-sdk-crypto-ffi/src/machine.rs b/bindings/matrix-sdk-crypto-ffi/src/machine.rs index 793ae5f9f70..c5daafd1a0b 100644 --- a/bindings/matrix-sdk-crypto-ffi/src/machine.rs +++ b/bindings/matrix-sdk-crypto-ffi/src/machine.rs @@ -1537,11 +1537,11 @@ impl OlmMachine { /// Clear any in-memory caches because they may be out of sync with the /// underlying data store. - /// + /// /// The crypto store layer is caching olm sessions for a given device. /// When used in a multi-process context this cache will get outdated. - /// If the machine is used by another process, the cache must be invalidating when the - /// main process is resumed. + /// If the machine is used by another process, the cache must be + /// invalidating when the main process is resumed. pub async fn clear_crypto_cache(&self) { self.inner.clear_crypto_cache().await }