From c3f2003eb7c2ffb69e955c14a64b66c8c862d42d Mon Sep 17 00:00:00 2001 From: Denis Kasak Date: Thu, 19 May 2022 16:19:23 +0200 Subject: [PATCH] docs: Slightly reword CryptoStore doc for consistency. --- 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 890202f70..c82fe9345 100644 --- a/crates/matrix-sdk-crypto/src/store/mod.rs +++ b/crates/matrix-sdk-crypto/src/store/mod.rs @@ -639,8 +639,8 @@ impl CryptoStoreError { } } -/// Trait abstracting a store that the `OlmMachine` uses to store cryptographic -/// keys. +/// Represents a store that the `OlmMachine` uses to store E2EE data (such as +/// cryptographic keys). #[cfg_attr(target_arch = "wasm32", async_trait(?Send))] #[cfg_attr(not(target_arch = "wasm32"), async_trait)] pub trait CryptoStore: AsyncTraitDeps {