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, }