diff --git a/crates/matrix-sdk-crypto/src/store/mod.rs b/crates/matrix-sdk-crypto/src/store/mod.rs index 345e69e3c..1c71b49b2 100644 --- a/crates/matrix-sdk-crypto/src/store/mod.rs +++ b/crates/matrix-sdk-crypto/src/store/mod.rs @@ -115,7 +115,7 @@ struct StoreCache { struct StoreCacheGuard<'a> { cache: &'a StoreCache, - // TODO(bnjbvr, #2624) add cross-process lock guard here. + // TODO: (bnjbvr, #2624) add cross-process lock guard here. } impl<'a> Deref for StoreCacheGuard<'a> { @@ -563,7 +563,7 @@ impl Store { } async fn cache(&self) -> Result> { - // TODO(bnjbvr, #2624) If configured with a cross-process lock: + // TODO: (bnjbvr, #2624) If configured with a cross-process lock: // - try to take the lock, // - if acquired, look if another process touched the underlying storage, // - if yes, reload everything; if no, return current cache