From 18fe2b20e60d3a5e93f9683c4516b167a2cd7dd4 Mon Sep 17 00:00:00 2001 From: Michael Goldenberg Date: Mon, 20 Oct 2025 23:02:55 -0400 Subject: [PATCH] doc(indexeddb): fix typos in documentation Signed-off-by: Michael Goldenberg --- crates/matrix-sdk-indexeddb/src/media_store/transaction.rs | 2 +- crates/matrix-sdk-indexeddb/src/serializer/indexed_type/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-indexeddb/src/media_store/transaction.rs b/crates/matrix-sdk-indexeddb/src/media_store/transaction.rs index 34df032f8..12a4f3143 100644 --- a/crates/matrix-sdk-indexeddb/src/media_store/transaction.rs +++ b/crates/matrix-sdk-indexeddb/src/media_store/transaction.rs @@ -216,7 +216,7 @@ impl<'a> IndexeddbMediaStoreTransaction<'a> { } } - /// Delete [`MediaMetadat`] and [`MediaContent`] that matches the given + /// Delete [`MediaMetadata`] and [`MediaContent`] that matches the given /// [`MediaRequestParameters`] from IndexedDB pub async fn delete_media_by_id( &self, diff --git a/crates/matrix-sdk-indexeddb/src/serializer/indexed_type/mod.rs b/crates/matrix-sdk-indexeddb/src/serializer/indexed_type/mod.rs index 02564c559..b4480c56a 100644 --- a/crates/matrix-sdk-indexeddb/src/serializer/indexed_type/mod.rs +++ b/crates/matrix-sdk-indexeddb/src/serializer/indexed_type/mod.rs @@ -55,7 +55,7 @@ impl From for IndexedTypeSerializerError { pub struct IndexedTypeSerializationOutput { /// The intermediary value created in the process of serialization pub indexed: T::IndexedType, - /// The fully-serialzed value + /// The fully-serialized value pub value: JsValue, }