From 8d1308ef6aff9585d657f09b5b19690d3046e76c Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Thu, 7 Sep 2023 22:31:34 +0100 Subject: [PATCH] fix doc --- crates/matrix-sdk-crypto/src/store/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-crypto/src/store/mod.rs b/crates/matrix-sdk-crypto/src/store/mod.rs index bd3959c05..84c53221f 100644 --- a/crates/matrix-sdk-crypto/src/store/mod.rs +++ b/crates/matrix-sdk-crypto/src/store/mod.rs @@ -1073,7 +1073,7 @@ impl Store { /// logged and items will be dropped. /// /// The stream will terminate once all references to the underlying - /// [`CryptoStoreWrapper`] are dropped. + /// `CryptoStoreWrapper` are dropped. pub fn room_keys_received_stream(&self) -> impl Stream> { self.inner.store.room_keys_received_stream() } @@ -1184,7 +1184,7 @@ impl Store { /// lower-level view on that data. /// /// The stream will terminate once all references to the underlying - /// [`CryptoStoreWrapper`] are dropped. + /// `CryptoStoreWrapper` are dropped. pub fn identities_stream_raw(&self) -> impl Stream { self.inner.store.identities_stream().map(|(_, identities, devices)| (identities, devices)) }